neovim setup
This commit is contained in:
55
lua/plugins/nvim-treesitter.lua
Normal file
55
lua/plugins/nvim-treesitter.lua
Normal file
@@ -0,0 +1,55 @@
|
||||
local config = function()
|
||||
require("nvim-treesitter.configs").setup({
|
||||
build = ":TSUpdate",
|
||||
indent = {
|
||||
enable = true,
|
||||
},
|
||||
autotag = {
|
||||
enable = true,
|
||||
},
|
||||
event = {
|
||||
"BufReadPre",
|
||||
"BufNewFile",
|
||||
},
|
||||
ensure_installed = {
|
||||
"rust",
|
||||
"markdown",
|
||||
"json",
|
||||
"javascript",
|
||||
"typescript",
|
||||
"yaml",
|
||||
"html",
|
||||
"css",
|
||||
"markdown",
|
||||
"bash",
|
||||
"lua",
|
||||
"dockerfile",
|
||||
"solidity",
|
||||
"gitignore",
|
||||
"python",
|
||||
"vue",
|
||||
"svelte",
|
||||
"toml",
|
||||
},
|
||||
auto_install = true,
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = true,
|
||||
},
|
||||
incremental_selection = {
|
||||
enable = true,
|
||||
keymaps = {
|
||||
init_selection = "<C-s>",
|
||||
node_incremental = "<C-s>",
|
||||
scope_incremental = false,
|
||||
node_decremental = "<BS>",
|
||||
},
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
lazy = false,
|
||||
config = config,
|
||||
}
|
||||
Reference in New Issue
Block a user