mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-14 17:26:50 +00:00
954738573d
This is a WIP with telescope and fzf
25 lines
517 B
Lua
25 lines
517 B
Lua
-- Configures nvim-treesitter
|
|
require'nvim-treesitter.configs'.setup{
|
|
incremental_selection = { enable = true },
|
|
-- Indent appears to be broken right now
|
|
indent = { enable = false },
|
|
textobjects = { enable = true },
|
|
highlight = {
|
|
enable = true,
|
|
disable = {},
|
|
},
|
|
ensure_installed = {
|
|
"bash",
|
|
"css",
|
|
"fish",
|
|
"go",
|
|
"gomod",
|
|
"javascript",
|
|
"json",
|
|
"lua",
|
|
"python",
|
|
"rust",
|
|
"yaml",
|
|
},
|
|
}
|