diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-16 11:06:54 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-16 11:06:54 +0100 |
| commit | 8893f75215306eadc3b171a16790bd73edc31e9d (patch) | |
| tree | 0c3de43acb5da2bfc37a7d2f6c055e5a9c1f3202 /modules/home | |
| parent | c55821b4e478fd2476e60f396e45a0dd9d0b2d32 (diff) | |
added nvim-tree config
Diffstat (limited to 'modules/home')
| -rw-r--r-- | modules/home/i3wm/nord-blue/nvim.nix | 16 |
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", { |
