telescope,neo-tree,lsp config
This commit is contained in:
parent
e0f68cbc51
commit
cc3f80c743
9 changed files with 190 additions and 28 deletions
13
lua/plugins/treeSitter.lua
Normal file
13
lua/plugins/treeSitter.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
return {"nvim-treesitter/nvim-treesitter",
|
||||
build = ":TSUpdate",
|
||||
config = function()
|
||||
local configs = require("nvim-treesitter.configs")
|
||||
configs.setup({
|
||||
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash' },
|
||||
sync_install = false,
|
||||
highlight = { enable = true },
|
||||
indent = { enable = true },
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue