move most important config to ansible
This commit is contained in:
51
roles/nvim/files/lua/config/plugins/treesitter.lua
Normal file
51
roles/nvim/files/lua/config/plugins/treesitter.lua
Normal file
@ -0,0 +1,51 @@
|
||||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
build = ":TSUpdate",
|
||||
dependencies = {
|
||||
"windwp/nvim-ts-autotag",
|
||||
},
|
||||
config = function()
|
||||
local treesitter = require('nvim-treesitter.configs')
|
||||
|
||||
treesitter.setup({
|
||||
auto_install = true,
|
||||
sync_install = false,
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
indent = { enable = true },
|
||||
autotag = { enable = true },
|
||||
ensure_installed = {
|
||||
'json',
|
||||
'javascript',
|
||||
'typescript',
|
||||
'yaml',
|
||||
'html',
|
||||
'htmldjango',
|
||||
'css',
|
||||
'scss',
|
||||
'markdown',
|
||||
'markdown_inline',
|
||||
'bash',
|
||||
'lua',
|
||||
'vim',
|
||||
'dockerfile',
|
||||
'python',
|
||||
'gitignore',
|
||||
'c',
|
||||
},
|
||||
ignore_install = {},
|
||||
incremental_selection = {
|
||||
enable = true,
|
||||
keymaps = {
|
||||
init_selection = '<C-Space>',
|
||||
node_incremental = '<C-Space>',
|
||||
scope_incremental = false,
|
||||
node_decremental = '<bs>',
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user