trying fixes for cmp

This commit is contained in:
Arthur Wambst 2025-04-23 20:30:41 +02:00
parent aceabf08d3
commit 4d00f50020

View File

@ -59,6 +59,7 @@
]; ];
programs.neovim = { programs.neovim = {
enable = true; enable = true;
configure = {
packages.myTetspkg = { packages.myTetspkg = {
start = [ start = [
(pkgs.vimUtils.buildVimPlugin { (pkgs.vimUtils.buildVimPlugin {
@ -68,7 +69,7 @@
}) })
]; ];
}; };
configure.customRC = '' customRC = ''
set runtimepath+=${inputs.plugin-dracula} set runtimepath+=${inputs.plugin-dracula}
set runtimepath+=${inputs.plugin-lsp} set runtimepath+=${inputs.plugin-lsp}
set runtimepath+=${inputs.plugin-cmp} set runtimepath+=${inputs.plugin-cmp}
@ -168,4 +169,5 @@ EOF
}; };
}; };
}; };
};
} }