summaryrefslogtreecommitdiff
path: root/after/plugin/treesitter.lua
diff options
context:
space:
mode:
authorGravatar Matthew Wozniak <sirtomato999@gmail.com> 2023-12-29 19:39:37 -0500
committerGravatar Matthew Wozniak <sirtomato999@gmail.com> 2023-12-29 19:39:37 -0500
commit047ea7318b352692b0c2cb49590d75ea1588c148 (patch)
tree069acb3e7045025f4b6ace8752617251d4ca0a2b /after/plugin/treesitter.lua
parent256937593ad354a82c520b3c0968f0bb17e86768 (diff)
downloadnvim-047ea7318b352692b0c2cb49590d75ea1588c148.tar.gz
nvim-047ea7318b352692b0c2cb49590d75ea1588c148.zip
new config
Diffstat (limited to 'after/plugin/treesitter.lua')
-rw-r--r--after/plugin/treesitter.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/after/plugin/treesitter.lua b/after/plugin/treesitter.lua
deleted file mode 100644
index 86826a0..0000000
--- a/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 = { "zig", "rust", "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,
- },
-}