summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins/treesitter.lua')
-rwxr-xr-x.config/nvim/lua/plugins/treesitter.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua
new file mode 100755
index 0000000..7fb6d45
--- /dev/null
+++ b/.config/nvim/lua/plugins/treesitter.lua
@@ -0,0 +1,18 @@
+require('nvim-treesitter.configs').setup {
+ ensure_installed = 'all',
+ ignore_install = {
+ 'verilog',
+ 'kotlin'
+ },
+ highlight = {
+ enable = true,
+ -- additional_vim_regex_highlighting = { "markdown" }
+ additional_vim_regex_highlighting = true,
+ set_custom_captures = {
+ ["type.string"] = "pythonFunction",
+ }
+ },
+ incremental_selection = { enable = true },
+ textobjects = { enable = true }
+}
+
remember that computers suck.