summaryrefslogtreecommitdiffstats
path: root/after/plugin/auto-indent.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--after/plugin/auto-indent.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/after/plugin/auto-indent.lua b/after/plugin/auto-indent.lua
deleted file mode 100644
index fafb0bc..0000000
--- a/after/plugin/auto-indent.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-local status_ok, indent = pcall(require, "auto-indent")
-if not status_ok then
- return
-end
-
-indent.setup {
- indentexpr = function(lnum)
- return require("nvim-treesitter.indent").get_indent(lnum)
- end
-}