diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-15 16:04:04 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-15 16:04:04 -0400 |
| commit | fa47decc33d46af0e3c453c38aa22674177f393d (patch) | |
| tree | e027a795666fa4d99ab825a4561e08d1aa4c735d /modules/neovim/default.nix | |
| parent | fc23a2e79eff0bcdbc7e2bce109fb7d74d996b7e (diff) | |
| download | home-fa47decc33d46af0e3c453c38aa22674177f393d.tar.gz | |
update
Diffstat (limited to 'modules/neovim/default.nix')
| -rw-r--r-- | modules/neovim/default.nix | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/modules/neovim/default.nix b/modules/neovim/default.nix index 135466c..e792cf6 100644 --- a/modules/neovim/default.nix +++ b/modules/neovim/default.nix @@ -42,25 +42,26 @@ in vimdiffAlias = true; plugins = with pkgs.vimPlugins; [ nvim-treesitter - (nvim-treesitter.withPlugins (p: with p; [ - tree-sitter-nix - tree-sitter-make - tree-sitter-verilog - tree-sitter-scheme - tree-sitter-llvm - tree-sitter-html - tree-sitter-glsl - tree-sitter-devicetree - tree-sitter-cuda - tree-sitter-c - tree-sitter-cpp - tree-sitter-lua - tree-sitter-zig - tree-sitter-rust - tree-sitter-toml - tree-sitter-markdown - tree-sitter-markdown-inline - ])) + nvim-treesitter.withAllGrammars + # (nvim-treesitter.withPlugins (p: with p; [ + # tree-sitter-nix + # tree-sitter-make + # tree-sitter-verilog + # tree-sitter-scheme + # tree-sitter-llvm + # tree-sitter-html + # tree-sitter-glsl + # tree-sitter-devicetree + # tree-sitter-cuda + # tree-sitter-c + # tree-sitter-cpp + # tree-sitter-lua + # tree-sitter-zig + # tree-sitter-rust + # tree-sitter-toml + # tree-sitter-markdown + # tree-sitter-markdown-inline + # ])) { plugin = lean-nvim; |