aboutsummaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/i3wm/nord-blue/nvim.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix
index b66c4f4..57ca5b4 100644
--- a/modules/home/i3wm/nord-blue/nvim.nix
+++ b/modules/home/i3wm/nord-blue/nvim.nix
@@ -15,11 +15,14 @@
plugins = with pkgs.vimPlugins; [
vimtex
- (nvim-treesitter.withPlugins (p: [ p.lua p.nix p.rust p.python p.bash p.latex ]))
- telescope-nvim
- plenary-nvim
- which-key-nvim
- catppuccin-nvim
+ (nvim-treesitter.withPlugins (p: [ p.lua p.nix p.rust p.python p.bash p.latex ])) # Syntax highlighting + language servers
+ telescope-nvim # File search
+ plenary-nvim # Lua functions
+ which-key-nvim # Keybind suggestions
+ catppuccin-nvim # Catppuccin theme
+ nvim-tree-lua # Tree file browser
+ nvim-web-devicons # Icons
+
{
plugin = vim-startify; # Add the plugin and its coresponding config
config = "let g:startify_change_to_vcs_root = 0";
@@ -93,6 +96,9 @@
"-file-line-error",
},
}
+ -- Let treesitter handle LaTeX highlighting
+ vim.g.vimtex_syntax_enabled = 0
+
-- Auto settings for LaTeX files
vim.api.nvim_create_autocmd("FileType", {