aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-03-17 13:09:00 -0500
committerToby Vincent <tobyv13@gmail.com>2022-03-17 13:09:00 -0500
commitea8f210bd97b48d2ffd664f966872a8e51f1e306 (patch)
tree18f33ee3d82cc7399e367f59a64d4067661cac35 /nvim/lua/plugins/treesitter.lua
parenta3d6669ce88b8690e53429773d7e30056d86e135 (diff)
feat: initial working nvim
Diffstat (limited to 'nvim/lua/plugins/treesitter.lua')
-rw-r--r--nvim/lua/plugins/treesitter.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua
new file mode 100644
index 0000000..826693a
--- /dev/null
+++ b/nvim/lua/plugins/treesitter.lua
@@ -0,0 +1,9 @@
+require("nvim-treesitter.configs").setup {
+ indent = {
+ enable = true
+ },
+ highlight = {
+ enable = true,
+ additional_vim_regex_highlighting = false
+ }
+} \ No newline at end of file