Add neovim configuration files
This commit is contained in:
parent
6cd67e88ad
commit
74a974be5e
25 changed files with 8576 additions and 15 deletions
11
templates/nvim/lua/tree-sitter.lua.j2
Normal file
11
templates/nvim/lua/tree-sitter.lua.j2
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
-- {{ ansible_managed }} {{ ansible_date_time.time }} {{ ansible_date_time.date }}
|
||||
|
||||
local tree_sitter_config = require('nvim-treesitter.configs')
|
||||
|
||||
tree_sitter_config.setup {
|
||||
ensure_installed = {
|
||||
'lua', 'yaml', 'bash', 'python', 'javascript', 'css', 'scss', 'html',
|
||||
'json', 'dockerfile', 'markdown',
|
||||
},
|
||||
auto_install = true,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue