diff options
author | sefidel <contact@sefidel.net> | 2022-03-19 00:48:16 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-03-19 00:48:16 +0900 |
commit | 4c25c2465380c9bfeb51567189fded155c1b40e3 (patch) | |
tree | ef7252a96a611d298e414970e7eeed84da69dfac /fnl | |
parent | 0135d35fc6fc513dfad9fc0d1560fc48299d1b4a (diff) | |
download | nvimrc-4c25c2465380c9bfeb51567189fded155c1b40e3.tar.gz nvimrc-4c25c2465380c9bfeb51567189fded155c1b40e3.zip |
feat(packs): remove unused plugin config
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/nvrc/packs/lir.fnl | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/fnl/nvrc/packs/lir.fnl b/fnl/nvrc/packs/lir.fnl deleted file mode 100644 index 18b85d6..0000000 --- a/fnl/nvrc/packs/lir.fnl +++ /dev/null @@ -1,36 +0,0 @@ -(local lir (require :lir)) -(local actions (require :lir.actions)) -(local mark-actions (require :lir.mark.actions)) -(local clipboard-actions (require :lir.clipboard.actions)) - -(lir.setup {:show_hidden_files false - :mappings {:l actions.edit - :<C-s> actions.split - :<C-v> actions.vsplit - :<C-t> actions.tabedit - :h actions.up - :q actions.quit - :K actions.mkdir - :N actions.newfile - :R actions.rename - "@" actions.cd - :Y actions.yank_path - :. 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 - :win_opts (fn [] - (let [width (math.floor (* vim.o.columns 0.5)) - height (math.floor (* vim.o.lines 0.5))] - {:border :rounded - : width - : height - :row (-> vim.o.lines (- height) (/ 2) (math.floor) (- 5)) - :col (-> vim.o.columns (- width) (/ 2) - (math.floor))}))} - :hide_cursor false}) |