aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
authorawy <awy@awy.one>2025-10-14 18:27:29 +0300
committerawy <awy@awy.one>2025-10-14 18:27:29 +0300
commitde009fd679e10d053fdcc10785f91ad5317449ea (patch)
tree60918a488b579588596cf4d509fde298dccbf15d /.config/nvim/lua/plugins/treesitter.lua
parent9ea6cf81adb5d6abc59843de1db45913210f9320 (diff)
downloadhyprdots-de009fd679e10d053fdcc10785f91ad5317449ea.tar.gz
nvim revamp
Diffstat (limited to '.config/nvim/lua/plugins/treesitter.lua')
-rw-r--r--.config/nvim/lua/plugins/treesitter.lua33
1 files changed, 0 insertions, 33 deletions
diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua
deleted file mode 100644
index 0c2383c..0000000
--- a/.config/nvim/lua/plugins/treesitter.lua
+++ /dev/null
@@ -1,33 +0,0 @@
-return {
- {
- "nvim-treesitter/nvim-treesitter",
- branch = 'master',
- lazy = false,
- build = ":TSUpdate",
- config = function()
- local config = require("nvim-treesitter.configs")
- config.setup({
- ensure_installed = {
- "bash",
- "lua",
- "javascript",
- "c",
- "cpp",
- "json",
- "go",
- "markdown",
- "meson",
- "make",
- "cmake",
- "python",
- "rust",
- "yaml",
- "toml",
- "ron",
- },
- highlight = { enable = true },
- indent = { enable = true },
- })
- end
- }
-}