blob: c775c4b253bfcc5c8c2c912da27ea6ec0ca02e7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
;; Simple file manager.
(module config.lir {autoload {: util nvim aniseed.nvim}})
(defn- opts [actions mark-actions clipboard-actions]
{:show_hidden_files false
:devicons_enable true
:mappings {:l actions.edit
:<C-s> actions.split
:v actions.vsplit
:<C-t> actions.tabedit
:h actions.up
:q actions.quit
:A actions.mkdir
:a actions.newfile
:r actions.rename
"@" actions.cd
:Y actions.yank_path
:i actions.toggle_show_hidden
:d actions.delete
:J (fn []
(mark-actions.toggle_mark)
(vim.cmd "normal! j"))
:c clipboard-actions.copy
:x clipboard-actions.cut
:p clipboard-actions.paste}
:float {:winblend 0
:curdir_window {:enable false :highlight_dirname true}
:win_opts (fn []
(let [width (math.floor (* vim.o.columns 0.7))
height (math.floor (* vim.o.lines 0.7))]
{:border :rounded : width : height}))}
:hide_cursor false
:on_init (fn []
(nvim.buf_set_keymap 0 :x :J
":<C-u>lua require(\"lir.mark.actions\").toggle_mark(\"v\")<CR>"
{:noremap true :silent true}))})
(let [lir (util.load-plugin :lir)]
(let [actions (require :lir.actions)
mark-actions (require :lir.mark.actions)
clipboard-actions (require :lir.clipboard.actions)]
(lir.setup (opts actions mark-actions clipboard-actions))
(nvim.set_keymap :n "-" ":lua require'lir.float'.toggle()<cr>"
{:noremap true :silent true})))
|