diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2024-03-27 23:51:05 -0400 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2024-03-27 23:51:50 -0400 |
| commit | a9c559f9fc070985db26e820f352395d75569eb8 (patch) | |
| tree | 565c4c21c3fbd0147166a5d3195d70b085168789 /.config/nvim/lua/treesitter.lua | |
| parent | e4c0895320d09ab7238e91aefc4e7112ba577a72 (diff) | |
lazy, neorg, and oil
apparently packer is abandoned, neorg told me to use lazy
neorg is so cool actually
vim-vinegar walked so that oil could fly
Diffstat (limited to '.config/nvim/lua/treesitter.lua')
| -rw-r--r-- | .config/nvim/lua/treesitter.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/nvim/lua/treesitter.lua b/.config/nvim/lua/treesitter.lua index 0e60da3..b4e9b9b 100644 --- a/.config/nvim/lua/treesitter.lua +++ b/.config/nvim/lua/treesitter.lua @@ -1,6 +1,6 @@ require 'nvim-treesitter.configs'.setup { -- A list of parser names, or "all" - ensure_installed = { "rust", "c", "lua", "vim", "help", "zig", "go" }, + ensure_installed = { "rust", "c", "lua", "vim", "zig", "go" }, -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false, @@ -14,9 +14,9 @@ require 'nvim-treesitter.configs'.setup { ---- If you need to change the installation directory of the parsers (see -> Advanced Setup) -- parser_install_dir = "/some/path/to/store/parsers", -- Remember to run vim.opt.runtimepath:append("/some/path/to/store/parsers")! - highlight = { - enable = false, + enable = true, + disable = { "c", "rust", "zig", "go" }, }, matchup = { enable = true, -- mandatory, false will disable the whole extension |
