diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2022-03-07 14:43:57 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2022-03-07 14:43:57 +0100 |
commit | 596823bc99e656d3913ad7fe7f6c0f27a30c0110 (patch) | |
tree | 9ddf40caf018cc630d445db327d7b8d52994f921 /lua/user/treesitter.lua | |
parent | cbcab8684e06379c9f5c51cfc9cac68d8684fe0c (diff) | |
download | vim-596823bc99e656d3913ad7fe7f6c0f27a30c0110.zip vim-596823bc99e656d3913ad7fe7f6c0f27a30c0110.tar.gz |
switch to neovim + lua
Diffstat (limited to 'lua/user/treesitter.lua')
-rw-r--r-- | lua/user/treesitter.lua | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lua/user/treesitter.lua b/lua/user/treesitter.lua new file mode 100644 index 0000000..889373f --- /dev/null +++ b/lua/user/treesitter.lua @@ -0,0 +1,29 @@ +local status_ok, configs = pcall(require, "nvim-treesitter.configs") +if not status_ok then + return +end + +configs.setup { + ensure_installed = "maintained", -- one of "all", "maintained" (parsers with maintainers), or a list of languages + sync_install = false, -- install languages synchronously (only applied to `ensure_installed`) + 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" } }, + context_commentstring = { -- for nvim-ts-context-commentstring + enable = true, + enable_autocmd = false, + }, + playground = { + enable = true, + }, + rainbow = { + enable = true, + } +} |