fix(nvim): Tidy up config
This commit is contained in:
parent
439eec75c3
commit
f872b0e054
1 changed files with 14 additions and 7 deletions
|
@ -1,17 +1,24 @@
|
|||
{
|
||||
colorizer.enable = true;
|
||||
colorizer.userDefaultOptions.names = false; # disable named colors (i.e. red)
|
||||
colorizer = {
|
||||
enable = true;
|
||||
# disable named colors (i.e. red)
|
||||
userDefaultOptions.names = false;
|
||||
};
|
||||
gitsigns.enable = true;
|
||||
lspconfig = import ./lspconfig.nix;
|
||||
lspkind.enable = true;
|
||||
lualine = import ./lualine.nix;
|
||||
luasnip.enable = true;
|
||||
luasnip.extraConfig = { update_events = "TextChanged,TextChangedI"; };
|
||||
luasnip = {
|
||||
enable = true;
|
||||
extraConfig = { update_events = "TextChanged,TextChangedI"; };
|
||||
};
|
||||
nvim-cmp = import ./cmp.nix;
|
||||
telescope.enable = true;
|
||||
treesitter.enable = true;
|
||||
treesitter.indent = true;
|
||||
treesitter.incrementalSelection.enable = true;
|
||||
treesitter = {
|
||||
enable = true;
|
||||
indent = true;
|
||||
incrementalSelection.enable = true;
|
||||
};
|
||||
treesitter-context.enable = true;
|
||||
trouble.enable = true;
|
||||
lint = {
|
||||
|
|
Loading…
Reference in a new issue