aboutsummaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
authorSimen A. W. Olsen <so@bjerk.io>2024-05-17 09:06:35 +0200
committerSimen A. W. Olsen <so@bjerk.io>2024-05-17 09:06:35 +0200
commite0b3900d8b50b499a5527e0f6d3590649fd4cefb (patch)
tree88e03739114d539998d19495f8bc51cbc6342529 /.config/nvim/lua/plugins/treesitter.lua
parente32ffed34b37c802a2178c21b6f819104fc77730 (diff)
downloaddotfiles-e0b3900d8b50b499a5527e0f6d3590649fd4cefb.tar.gz
dotfiles-e0b3900d8b50b499a5527e0f6d3590649fd4cefb.zip
update of may
Diffstat (limited to '.config/nvim/lua/plugins/treesitter.lua')
-rw-r--r--.config/nvim/lua/plugins/treesitter.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua
deleted file mode 100644
index 04ba7d8..0000000
--- a/.config/nvim/lua/plugins/treesitter.lua
+++ /dev/null
@@ -1,14 +0,0 @@
-return {
- {
- "nvim-treesitter/nvim-treesitter",
- build = ":TSUpdate",
- config = function()
- local config = require("nvim-treesitter.configs")
- config.setup({
- ensure_installed = { "lua", "javascript" },
- highlight = { enable = true },
- indent = { enable = true },
- })
- end,
- },
-}