From f60b4dc97bf7204a5bc3fe316df2ce4bd709babd Mon Sep 17 00:00:00 2001 From: Leander <80996591+m0ntagur@users.noreply.github.com> Date: Sat, 22 Jul 2023 15:38:23 +0200 Subject: Delete nvim directory --- nvim/plugin/treesitter.lua | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 nvim/plugin/treesitter.lua (limited to 'nvim/plugin/treesitter.lua') diff --git a/nvim/plugin/treesitter.lua b/nvim/plugin/treesitter.lua deleted file mode 100644 index a6b3c40..0000000 --- a/nvim/plugin/treesitter.lua +++ /dev/null @@ -1,23 +0,0 @@ -local status, ts = pcall(require, 'treesitter') -if (not status) then return end - -ts.setup { - highlight = { - enable = true, - disable = {} - }, - indent = { - enable = true, - disable = {} - }, - ensure_installed = { - 'lua', - 'python', - "css", - "html", - "json", - }, - autotag = { - enable = true, - }, -} -- cgit v1.3.1