diff options
author | Joe <rbo@gmx.us> | 2023-12-28 11:18:49 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2023-12-28 11:18:49 +0100 |
commit | ab93bc0398c230d566dd685c9c01a58879aefc17 (patch) | |
tree | e69a8588f83bfef80150a7b841c8f90478eb6ce9 /.config/nvim/after | |
parent | up (diff) | |
download | dotfiles-bsd-ab93bc0398c230d566dd685c9c01a58879aefc17.tar.gz dotfiles-bsd-ab93bc0398c230d566dd685c9c01a58879aefc17.tar.bz2 dotfiles-bsd-ab93bc0398c230d566dd685c9c01a58879aefc17.tar.xz dotfiles-bsd-ab93bc0398c230d566dd685c9c01a58879aefc17.tar.zst dotfiles-bsd-ab93bc0398c230d566dd685c9c01a58879aefc17.zip |
up
Diffstat (limited to '')
-rw-r--r-- | .config/nvim/after/plugin/treesitter.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.config/nvim/after/plugin/treesitter.lua b/.config/nvim/after/plugin/treesitter.lua index 7865930..bbe666f 100644 --- a/.config/nvim/after/plugin/treesitter.lua +++ b/.config/nvim/after/plugin/treesitter.lua @@ -1,6 +1,6 @@ require'nvim-treesitter.configs'.setup { -- A list of parser names, or "all" (the five listed parsers should always be installed) - ensure_installed = { "c", "cpp", "lua", "vim", "vimdoc", "query", "go", "rust" }, + ensure_installed = { 'c', 'cpp', 'lua', 'vim', 'vimdoc', 'query', 'go', 'rust', 'yaml' }, -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false, @@ -18,4 +18,10 @@ require'nvim-treesitter.configs'.setup { -- Instead of true it can also be a list of languages additional_vim_regex_highlighting = false, }, + incremental_selection = { + enable = true, + }, + indent = { + enable = true, + }, } |