62 lines
1.3 KiB
Lua
62 lines
1.3 KiB
Lua
require("nvim-treesitter.configs").setup({
|
|
-- A list of parser names, or "all" (the four listed parsers should always be installed)
|
|
ensure_installed = {
|
|
"bash",
|
|
"c",
|
|
"css",
|
|
"dart",
|
|
"diff",
|
|
"dockerfile",
|
|
"git_rebase",
|
|
"gitattributes",
|
|
"gitcommit",
|
|
"gitignore",
|
|
"go",
|
|
"gomod",
|
|
"gosum",
|
|
"gowork",
|
|
"help",
|
|
"html",
|
|
"java",
|
|
"javascript",
|
|
"json",
|
|
"lua",
|
|
"markdown",
|
|
"rust",
|
|
"toml",
|
|
"typescript",
|
|
"vim",
|
|
"vue",
|
|
"yaml",
|
|
},
|
|
-- Install parsers synchronously (only applied to `ensure_installed`)
|
|
sync_install = true,
|
|
-- Automatically install missing parsers when entering buffer
|
|
-- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally
|
|
auto_install = true,
|
|
-- List of parsers to ignore installing (for "all")
|
|
ignore_install = {},
|
|
---- If you need to change the installation directory of the parsers (see -> Advanced Setup)
|
|
-- parser_install_dir = "/some/path/to/store/parsers", -- Remember to run vim.opt.runtimepath:append("/some/path/to/store/parsers")!
|
|
|
|
incremental_selection = {
|
|
enable = true,
|
|
keymaps = {
|
|
init_selection = "<CR>",
|
|
node_incremental = "<CR>",
|
|
node_decremental = "<BS>",
|
|
scope_incremental = "<TAB>",
|
|
},
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
},
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = false,
|
|
},
|
|
autotag = {
|
|
enable = true,
|
|
},
|
|
})
|