16 lines
414 B
Nix
16 lines
414 B
Nix
{ nvim-lspconfig, luasnip, nvim-cmp, cmp-nvim-lsp, cmp_luasnip, ... }:
|
|
|
|
{
|
|
luaConfig = (builtins.readFile ./lspconfig.lua)
|
|
+ (builtins.readFile ./nvim-cmp.lua);
|
|
|
|
plugins = [
|
|
nvim-lspconfig # Collection of configurations for built-in LSP client
|
|
|
|
luasnip # Snippets plugin
|
|
|
|
nvim-cmp # Autocompletion
|
|
cmp-nvim-lsp # LSP source for nvim-cmp
|
|
cmp_luasnip # Snippets source for nvim-cmp
|
|
];
|
|
}
|