diff options
| author | triethyl <triethylammonium@pm.me> | 2026-03-16 22:01:50 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2026-03-16 22:01:50 -0400 |
| commit | a6da21fb9d7ddcb758b281b18df90c49a916c8fa (patch) | |
| tree | 3f5129316838afd6f486c4ae230bdab4e5f7aa1b /pkgs | |
| parent | 44c079bc77c94bd1b10fc33b663bffb507305ff9 (diff) | |
homelab: added restic for backups
Diffstat (limited to 'pkgs')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/mini-pick.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/custom-neovim/config/lua/plugins/mini-pick.lua b/pkgs/custom-neovim/config/lua/plugins/mini-pick.lua new file mode 100644 index 0000000..b391136 --- /dev/null +++ b/pkgs/custom-neovim/config/lua/plugins/mini-pick.lua @@ -0,0 +1,19 @@ +return { + { + "mini.pick", + lazy = false, + before = function () + vim.cmd.packadd("mini.extra") + end, + after = function () + require("mini.pick").setup() + end + }, + { + "mini.extra", + lazy = false, + after = function () + require("mini.extra").setup() + end + } +} |
