From 1b534d96b4689145770363cc6c6877ca7e41a904 Mon Sep 17 00:00:00 2001 From: Gustaf Rydholm Date: Sat, 2 Jul 2022 03:14:04 +0200 Subject: Add lir --- fnl/config/lir.fnl | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 fnl/config/lir.fnl (limited to 'fnl/config/lir.fnl') diff --git a/fnl/config/lir.fnl b/fnl/config/lir.fnl new file mode 100644 index 0000000..8713b08 --- /dev/null +++ b/fnl/config/lir.fnl @@ -0,0 +1,42 @@ +;; Simple file manager. +(module config.lir {autoload {util util nvim aniseed.nvim}}) + +(defn- opts [actions mark-actions clipboard-actions] + {:show_hidden_files false + :devicons_enable true + :mappings {:l actions.edit + : actions.split + :v actions.vsplit + : 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 + ":lua require(\"lir.mark.actions\").toggle_mark(\"v\")" + {: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)))) -- cgit v1.2.3-70-g09d2