aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
authorIndrajith K L2025-11-23 19:20:09 +0530
committerIndrajith K L2025-11-23 19:20:09 +0530
commit8453bb64d330ba4bbb268e2593e95a86477eec1c (patch)
treef9e829365139031dfa938e832f9a05e3536a8e36 /nvim/lua/plugins/treesitter.lua
parent1ff9a983329b0e703511e78cd81dcbe81358733f (diff)
downloaddots-niri.tar.gz
dots-niri.tar.bz2
dots-niri.zip
Dot File for niri Desktopniri
Diffstat (limited to 'nvim/lua/plugins/treesitter.lua')
-rw-r--r--nvim/lua/plugins/treesitter.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua
deleted file mode 100644
index cec1c061d..000000000
--- a/nvim/lua/plugins/treesitter.lua
+++ /dev/null
@@ -1,16 +0,0 @@
-return{
- {
- "nvim-treesitter/nvim-treesitter",
- build = ":TSUpdate",
- config = function()
-
- local config = require("nvim-treesitter.configs")
- config.setup({
- ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "elixir", "heex", "javascript", "html", "css","fish","json","make","odin","rasi","xml" },
- sync_install = false,
- highlight = { enable = true },
- indent = { enable = true },
- })
- end
- }
-}