neovim: fix config
This commit is contained in:
@@ -9,23 +9,24 @@
|
|||||||
nodePackages_latest.nodejs
|
nodePackages_latest.nodejs
|
||||||
];
|
];
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
vim-fugitive
|
|
||||||
undotree
|
|
||||||
telescope-nvim
|
|
||||||
nvim-cmp
|
|
||||||
cmp-nvim-lsp
|
|
||||||
nvim-lspconfig
|
|
||||||
lsp-zero-nvim
|
|
||||||
vim-floaterm
|
|
||||||
luasnip
|
|
||||||
cmp_luasnip
|
|
||||||
lualine-nvim
|
|
||||||
vim-sleuth
|
|
||||||
copilot-lua
|
|
||||||
copilot-cmp
|
|
||||||
cmp-cmdline
|
|
||||||
cmp-buffer
|
|
||||||
catppuccin-nvim
|
catppuccin-nvim
|
||||||
|
cmp-buffer
|
||||||
|
cmp-cmdline
|
||||||
|
cmp-nvim-lsp
|
||||||
|
cmp_luasnip
|
||||||
|
copilot-cmp
|
||||||
|
copilot-lua
|
||||||
|
lsp-zero-nvim
|
||||||
|
lualine-nvim
|
||||||
|
luasnip
|
||||||
|
nvim-cmp
|
||||||
|
nvim-lspconfig
|
||||||
|
plenary-nvim
|
||||||
|
telescope-nvim
|
||||||
|
undotree
|
||||||
|
vim-floaterm
|
||||||
|
vim-fugitive
|
||||||
|
vim-sleuth
|
||||||
(nvim-treesitter.withPlugins (p: [
|
(nvim-treesitter.withPlugins (p: [
|
||||||
p.tree-sitter-yaml
|
p.tree-sitter-yaml
|
||||||
p.tree-sitter-nix
|
p.tree-sitter-nix
|
||||||
@@ -42,7 +43,7 @@
|
|||||||
p.tree-sitter-markdown-inline
|
p.tree-sitter-markdown-inline
|
||||||
]))
|
]))
|
||||||
];
|
];
|
||||||
extraLuaConfig = ''
|
initLua = ''
|
||||||
${builtins.readFile ./plugins.lua}
|
${builtins.readFile ./plugins.lua}
|
||||||
${builtins.readFile ./options.lua}
|
${builtins.readFile ./options.lua}
|
||||||
${builtins.readFile ./keybinds.lua}
|
${builtins.readFile ./keybinds.lua}
|
||||||
|
|||||||
@@ -188,7 +188,7 @@ require('telescope').setup({
|
|||||||
})
|
})
|
||||||
|
|
||||||
-- Tresitter stuff
|
-- Tresitter stuff
|
||||||
require('nvim-treesitter.configs').setup {
|
require('nvim-treesitter').setup {
|
||||||
ensure_installed = {},
|
ensure_installed = {},
|
||||||
auto_install = false,
|
auto_install = false,
|
||||||
highlight = { enable = true },
|
highlight = { enable = true },
|
||||||
|
|||||||
Reference in New Issue
Block a user