Add neovim configuration files

This commit is contained in:
Sonny Bakker 2022-09-08 22:19:20 +02:00
parent 6cd67e88ad
commit 74a974be5e
25 changed files with 8576 additions and 15 deletions

View 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,
}