feat: treesitter plugin for neovim
This commit is contained in:
parent
9b1defa428
commit
85cc99140c
4 changed files with 41 additions and 22 deletions
dotfiles/neovim/lua/my/plugins
|
@ -3,6 +3,7 @@ local M = {}
|
|||
function M.setup()
|
||||
require("my.plugins.lspconfig").setup()
|
||||
require("my.plugins.fzf-lua").setup()
|
||||
require("my.plugins.treesitter").setup()
|
||||
|
||||
-- Other unconfigured plugins
|
||||
require('nvim-autopairs').setup()
|
||||
|
|
19
dotfiles/neovim/lua/my/plugins/treesitter.lua
Normal file
19
dotfiles/neovim/lua/my/plugins/treesitter.lua
Normal file
|
@ -0,0 +1,19 @@
|
|||
local M = {}
|
||||
|
||||
function M.setup()
|
||||
require'nvim-treesitter.configs'.setup {
|
||||
ensure_installed = "maintained",
|
||||
sync_install = false,
|
||||
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
|
||||
}
|
||||
}
|
||||
end
|
||||
|
||||
return M
|
Loading…
Add table
Add a link
Reference in a new issue