summaryrefslogtreecommitdiff
path: root/fnl/plugins/editor/harpoon.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/plugins/editor/harpoon.fnl')
-rw-r--r--fnl/plugins/editor/harpoon.fnl53
1 files changed, 0 insertions, 53 deletions
diff --git a/fnl/plugins/editor/harpoon.fnl b/fnl/plugins/editor/harpoon.fnl
deleted file mode 100644
index 0791f98..0000000
--- a/fnl/plugins/editor/harpoon.fnl
+++ /dev/null
@@ -1,53 +0,0 @@
-;; Harpoon files for navigation.
-
-(local user-cmds [[:HarpoonAdd
- (lambda []
- (let [harpoon (require :harpoon.mark)]
- (harpoon.add_file)))
- {:nargs 0}]
- [:HarpoonNext
- (lambda []
- (let [harpoon (require :harpoon.ui)]
- (harpoon.nav_next)))
- {:nargs 0}]
- [:HarpoonPrev
- (lambda []
- (let [harpoon (require :harpoon.ui)]
- (harpoon.nav_prev)))
- {:nargs 0}]
- [:HarpoonUI
- (lambda []
- (let [harpoon (require :harpoon.ui)]
- (harpoon.toggle_quick_menu)))
- {:nargs 0}]])
-
-(fn telescope-ext [ext fun opts]
- (let [telescope (require :telescope)
- themes (require :telescope.themes)
- theme (. opts :theme)]
- ((. (. (. telescope :extensions) ext) fun) ((. themes theme) opts))))
-
-(fn init []
- (let [cmds (require :util.cmds)]
- (cmds.create-user-cmds user-cmds)))
-
-(fn config []
- (vim.keymap.set :n :<tab>
- (fn []
- (telescope-ext :harpoon :marks
- {:theme :get_dropdown
- :previewer false
- :initial_mode :normal
- :prompt_title :Harpoon}))
- {})
- (vim.keymap.set :n :<s-tab>
- "<cmd>Telescope buffers theme=dropdown previewer=false initial_mode=normal<cr>"
- {})
- {:menu {:width (- (vim.api.nvim_win_get_width 0) 4)}})
-
-(local keys [{1 :ma 2 :<cmd>HarpoonAdd<cr> :desc :Harpoon}
- {1 :mr 2 :<cmd>HarpoonUI<cr> :desc "Harpoon UI"}
- {1 :ms 2 :<cmd>HarpoonPrev<cr> :desc "Harpoon Prev"}
- {1 :mt 2 :<cmd>HarpoonNext<cr> :desc "Harpoon Next"}])
-
-{1 :ThePrimeagen/harpoon :event :BufReadPost : init : keys : config}