trying fixes for cmp

This commit is contained in:
Arthur Wambst 2025-04-23 20:45:08 +02:00
parent 4d00f50020
commit 995eeae84f

View File

@ -61,15 +61,19 @@
enable = true;
configure = {
packages.myTetspkg = {
start = [
(pkgs.vimUtils.buildVimPlugin {
pname = "nvim-cmp";
version = "latest";
src = inputs.plugin-cmp;
})
];
};
customRC = ''
start = with pkgs.vimPlugins; [
# Use pre-packaged plugins from nixpkgs
dracula-nvim # or the closest match available
nvim-lspconfig
nvim-cmp
cmp-nvim-lsp
cmp-buffer
cmp-path
cmp-cmdline
vim-vsnip
cmp-vsnip
];};
customRC = ''
set runtimepath+=${inputs.plugin-dracula}
set runtimepath+=${inputs.plugin-lsp}
set runtimepath+=${inputs.plugin-cmp}