aboutsummaryrefslogtreecommitdiff
path: root/nvim/plugin/treesitter.lua
diff options
context:
space:
mode:
authorLeander <80996591+m0ntagur@users.noreply.github.com>2023-07-22 15:38:23 +0200
committerGitHub <noreply@github.com>2023-07-22 15:38:23 +0200
commitf60b4dc97bf7204a5bc3fe316df2ce4bd709babd (patch)
tree21bb5a36cd7f206bfef73a44fd2a0cdf2a27e82e /nvim/plugin/treesitter.lua
parent0561e714bb476d936e51f6e49292542712255dec (diff)
Delete nvim directory
Diffstat (limited to 'nvim/plugin/treesitter.lua')
-rw-r--r--nvim/plugin/treesitter.lua23
1 files changed, 0 insertions, 23 deletions
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,
- },
-}