diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-12 21:22:47 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-12 21:22:47 +0100 |
commit | 7cf73775036c3424dd5e2a85effe3883cf0b0ca8 (patch) | |
tree | 61d7584b44d0c8074676bb2a1cfba00dc3a6babc /lua/config/treesitter.lua | |
parent | b42618906aad70a735ea9272403e5e2657230fcc (diff) |
Refactor the file structure
Diffstat (limited to 'lua/config/treesitter.lua')
-rw-r--r-- | lua/config/treesitter.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lua/config/treesitter.lua b/lua/config/treesitter.lua new file mode 100644 index 0000000..0e1fe07 --- /dev/null +++ b/lua/config/treesitter.lua @@ -0,0 +1,22 @@ +-- Treesitter is a tool for building syntax trees for source files. +-- In the neovim context it helps with better coloring. + +local status_ok, treesitter = pcall(require, "nvim-treesitter.configs") +if not status_ok then + return +end + +treesitter.setup({ + ensure_installed = "maintained", + sync_install = false, + ignore_install = { "" }, -- List of parsers to ignore installing + autopairs = { + enable = true, + }, + highlight = { + enable = true, -- false will disable the whole extension + disable = { "" }, -- list of language that will be disabled + additional_vim_regex_highlighting = true, + }, + indent = { enable = true, disable = { "yaml" } }, +}) |