mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-01 20:26:28 +00:00
50 lines
919 B
Lua
50 lines
919 B
Lua
-- Configures nvim-treesitter
|
|
local M = {}
|
|
|
|
M.ensure_installed = {
|
|
"bash",
|
|
"css",
|
|
"dockerfile",
|
|
"fish",
|
|
"go",
|
|
"gomod",
|
|
"html",
|
|
"java",
|
|
"javascript",
|
|
"json",
|
|
"kotlin",
|
|
"lua",
|
|
"make",
|
|
"markdown",
|
|
"markdown_inline",
|
|
"python",
|
|
"rust",
|
|
"scala",
|
|
"toml",
|
|
"typescript",
|
|
"vim",
|
|
"vimdoc",
|
|
"yaml",
|
|
}
|
|
|
|
function M.bootstrap()
|
|
require("nvim-treesitter.install").ensure_installed_sync(M.ensure_installed)
|
|
end
|
|
|
|
function M.setup()
|
|
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 = M.ensure_installed,
|
|
auto_install = false,
|
|
})
|
|
end
|
|
|
|
return M
|