summaryrefslogtreecommitdiff
path: root/lua/telescope/opts.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/telescope/opts.lua')
-rw-r--r--lua/telescope/opts.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/lua/telescope/opts.lua b/lua/telescope/opts.lua
deleted file mode 100644
index 0c3de91..0000000
--- a/lua/telescope/opts.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-
-local opts_manager = {}
-
--- Could use cool metatable to do this automatically
--- Idk, I have some other thoughts.
-opts_manager.shorten_path = function(opts)
- if opts.shorten_path ~= nil then
- return opts.shorten_path
- elseif config.values.shorten_path ~= nil then
- return config.values.shorten_path
- else
- return true
- end
-end
-
-
-return opts_manager