Initial commit

This commit is contained in:
Saeed Afzal
2022-03-09 12:31:08 +00:00
commit 847914b7ea
18 changed files with 349 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
require("nvim-treesitter.configs").setup {
ensure_installed = {
"lua",
"typescript",
"tsx",
"json",
"javascript"
},
highlight = {
enable = true,
use_languagetree = true
},
matchup = {
enable = true
},
context_commentstring = {
enable = true
}
}