summaryrefslogtreecommitdiff
path: root/plugin/plugins/quicker.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/plugins/quicker.lua')
-rw-r--r--plugin/plugins/quicker.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/plugin/plugins/quicker.lua b/plugin/plugins/quicker.lua
new file mode 100644
index 0000000..05a537e
--- /dev/null
+++ b/plugin/plugins/quicker.lua
@@ -0,0 +1,14 @@
+require("quicker").setup({
+ keys = {
+ {
+ ">",
+ "<cmd>lua require('quicker').expand()<CR>",
+ desc = "Expand quickfix content",
+ },
+ {
+ "<",
+ "<cmd>lua require('quicker').shrink()<CR>",
+ desc = "Shrink quickfix content",
+ },
+ },
+})