diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2025-10-06 23:02:57 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2025-10-06 23:02:57 -0400 |
| commit | a49fcc782ad4e84ae68c69393604f2702da913b9 (patch) | |
| tree | 8795b5092bd594122fab905e45ed8b342a917cfc /.config/nvim/after/plugin/treesitter.lua | |
| parent | bb4010e31c79d2716098843f7fe9b38c969f0950 (diff) | |
Updated Neovim Config
Diffstat (limited to '.config/nvim/after/plugin/treesitter.lua')
| -rw-r--r-- | .config/nvim/after/plugin/treesitter.lua | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/.config/nvim/after/plugin/treesitter.lua b/.config/nvim/after/plugin/treesitter.lua deleted file mode 100644 index b90bdcd..0000000 --- a/.config/nvim/after/plugin/treesitter.lua +++ /dev/null @@ -1,21 +0,0 @@ -require'nvim-treesitter.configs'.setup { - -- A list of parser names, or "all" (the five listed parsers should always be installed) - ensure_installed = { "c", "lua", "vim", "vimdoc", "query" }, - - -- Install parsers synchronously (only applied to `ensure_installed`) - sync_install = false, - - -- Automatically install missing parsers when entering buffer - -- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally - auto_install = true, - - highlight = { - enable = true, - - -- Setting this to true will run `:h syntax` and tree-sitter at the same time. - -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation). - -- Using this option may slow down your editor, and you may see some duplicate highlights. - -- Instead of true it can also be a list of languages - additional_vim_regex_highlighting = false, - }, -} |
