fix(nvim): Tidy up config

This commit is contained in:
Jalil David Salamé Messina 2024-03-02 21:15:55 +01:00
parent 439eec75c3
commit f872b0e054
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

@ -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 = {