trying fixes for cmp
This commit is contained in:
parent
8ac8bce9b3
commit
6abaecda40
15
flake.lock
15
flake.lock
@ -314,6 +314,18 @@
|
|||||||
"url": "https://github.com/neovim/nvim-lspconfig"
|
"url": "https://github.com/neovim/nvim-lspconfig"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"plugin-vim-vsnip": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"narHash": "sha256-6l/g/qubjkDpsI6u0VlkmbK6+pT8IKJ/GKJrbfQURPk=",
|
||||||
|
"type": "file",
|
||||||
|
"url": "https://github.com/hrsh7th/vim-vsnip"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"type": "file",
|
||||||
|
"url": "https://github.com/hrsh7th/vim-vsnip"
|
||||||
|
}
|
||||||
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"neovim": "neovim",
|
"neovim": "neovim",
|
||||||
@ -326,7 +338,8 @@
|
|||||||
"plugin-cmp-vsnip": "plugin-cmp-vsnip",
|
"plugin-cmp-vsnip": "plugin-cmp-vsnip",
|
||||||
"plugin-dracula": "plugin-dracula",
|
"plugin-dracula": "plugin-dracula",
|
||||||
"plugin-gruvbox": "plugin-gruvbox",
|
"plugin-gruvbox": "plugin-gruvbox",
|
||||||
"plugin-lsp": "plugin-lsp"
|
"plugin-lsp": "plugin-lsp",
|
||||||
|
"plugin-vim-vsnip": "plugin-vim-vsnip"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"treefmt-nix": {
|
"treefmt-nix": {
|
||||||
|
|||||||
11
flake.nix
11
flake.nix
@ -59,7 +59,16 @@
|
|||||||
];
|
];
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configure.customRC = ''
|
packages.myTetspkg = {
|
||||||
|
start = [
|
||||||
|
(pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
|
pname = "nvim-cmp";
|
||||||
|
version = "latest";
|
||||||
|
src = inputs.plugin-cmp;
|
||||||
|
})
|
||||||
|
];
|
||||||
|
};
|
||||||
|
configure.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}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user