summaryrefslogtreecommitdiff
path: root/lua/core/rooter.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-08-29 14:17:32 -0400
committerchristianchiarulli <[email protected]>2021-08-29 14:17:32 -0400
commited5559d259e38a78796a7d81421f02ba6dafac4b (patch)
treeafa9c00c017382bac547265a8a1e16b9770a07eb /lua/core/rooter.lua
parente7b6d3b6f5982ea1042ffd499a7b85c18f0b782e (diff)
parentc7a5122fe2c14dba0f28f1c077f838f957884afc (diff)
Merge branch 'rolling' of github.com:ChristianChiarulli/LunarVim
Diffstat (limited to 'lua/core/rooter.lua')
-rw-r--r--lua/core/rooter.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/lua/core/rooter.lua b/lua/core/rooter.lua
deleted file mode 100644
index 8ebdf7cc..00000000
--- a/lua/core/rooter.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-local M = {}
-function M.config()
- lvim.builtin.rooter = {
- --- This is on by default since it's currently the expected behavior.
- ---@usage set to false to disable vim-rooter.
- active = true,
- silent_chdir = 1,
- manual_only = 0,
- }
-end
-function M.setup()
- vim.g.rooter_silent_chdir = lvim.builtin.rooter.silent_chdir
- vim.g.rooter_manual_only = lvim.builtin.rooter.manual_only
-end
-return M