summaryrefslogtreecommitdiff
path: root/pkgs/old-neovim/config/lua/plugins/mini-pick.lua
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/old-neovim/config/lua/plugins/mini-pick.lua')
-rw-r--r--pkgs/old-neovim/config/lua/plugins/mini-pick.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/old-neovim/config/lua/plugins/mini-pick.lua b/pkgs/old-neovim/config/lua/plugins/mini-pick.lua
deleted file mode 100644
index de6c7ec..0000000
--- a/pkgs/old-neovim/config/lua/plugins/mini-pick.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-local win_config = function()
- local height = math.floor(0.5 * vim.o.lines)
- local width = math.floor(0.618 * vim.o.columns)
- return {
- anchor = 'NW', height = height, width = width,
- row = math.floor(0.5 * (vim.o.lines - height)),
- col = math.floor(0.5 * (vim.o.columns - width)),
- }
-end
-
-require('mini.pick').setup({
- options = {
- content_from_bottom = true,
- use_cache = true,
- },
- window = {
- config = win_config,
- },
- -- delay = {
- -- async = 1,
- -- busy = 1,
- -- },
-})
-require('mini.extra').setup()