diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-08-31 15:39:39 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-08-31 22:28:28 +0530 |
commit | 31458b74b81df4ef5101c01b26fc28fc32ee821b (patch) | |
tree | 15846c395e3ac5aa085a30d11833b6f531abb345 /home/common/modules/neovim/config/lua/pacman/plugins/treesitter.lua | |
parent | 07854ac073b6c4a3e749078fa113367105a7af08 (diff) |
feat(home/common): init neovim
Diffstat (limited to 'home/common/modules/neovim/config/lua/pacman/plugins/treesitter.lua')
-rw-r--r-- | home/common/modules/neovim/config/lua/pacman/plugins/treesitter.lua | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/home/common/modules/neovim/config/lua/pacman/plugins/treesitter.lua b/home/common/modules/neovim/config/lua/pacman/plugins/treesitter.lua new file mode 100644 index 0000000..b026245 --- /dev/null +++ b/home/common/modules/neovim/config/lua/pacman/plugins/treesitter.lua @@ -0,0 +1,28 @@ +return { + { -- Highlight, edit, and navigate code + 'nvim-treesitter/nvim-treesitter', + build = ':TSUpdate', + main = 'nvim-treesitter.configs', -- Sets main module to use for opts + -- [[ Configure Treesitter ]] See `:help nvim-treesitter` + opts = { + ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' }, + -- Autoinstall languages that are not installed + auto_install = true, + highlight = { + enable = true, + -- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules. + -- If you are experiencing weird indenting issues, add the language to + -- the list of additional_vim_regex_highlighting and disabled languages for indent. + additional_vim_regex_highlighting = { 'ruby' }, + }, + indent = { enable = true, disable = { 'ruby' } }, + }, + -- There are additional nvim-treesitter modules that you can use to interact + -- with nvim-treesitter. You should go explore a few and see what interests you: + -- + -- - Incremental selection: Included, see `:help nvim-treesitter-incremental-selection-mod` + -- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context + -- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects + }, +} +-- vim: ts=2 sts=2 sw=2 et |