Create new neovim config with lua

This commit is contained in:
2021-11-12 22:32:28 +03:00
parent ea75e570fe
commit ca53467321
9 changed files with 450 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
require("nvim-treesitter.configs").setup({
highlight = {
enable = true
},
rainbow = {
enable = true,
extended_mode = true
},
autotag = {
enable = true
},
context_commentstring = {
enable = true
}
})