diff --git a/modules/home-manager/nixvim.nix b/modules/home-manager/nixvim.nix index 9a745a4..8956242 100644 --- a/modules/home-manager/nixvim.nix +++ b/modules/home-manager/nixvim.nix @@ -100,6 +100,15 @@ }; }; + plugins.treesitter = { + enable = true; + settings = { + auto_install = true; + highlight.enable = true; + indent.enable = true; + }; + }; + plugins.which-key = { enable = true; lazyLoad = { @@ -108,6 +117,10 @@ }; }; + extraPackages = with pkgs; [ + gcc + ]; + extraPlugins = with pkgs.vimPlugins; [ vim-sleuth ];