summaryrefslogtreecommitdiff
path: root/fnl/plugins/editor/oil.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/plugins/editor/oil.fnl')
-rw-r--r--fnl/plugins/editor/oil.fnl25
1 files changed, 0 insertions, 25 deletions
diff --git a/fnl/plugins/editor/oil.fnl b/fnl/plugins/editor/oil.fnl
deleted file mode 100644
index a15c22e..0000000
--- a/fnl/plugins/editor/oil.fnl
+++ /dev/null
@@ -1,25 +0,0 @@
-;; File explorer that lets you edit your filesystem.
-
-(local opts {:keymaps {:g? :actions.show_help
- :<CR> :actions.select
- :<C-s> :actions.select_vsplit
- :<C-h> :actions.select_split
- :<C-t> :actions.select_tab
- :<C-p> :actions.preview
- :<C-c> :actions.close
- :<C-l> :actions.refresh
- :- :actions.parent
- :_ :actions.open_cwd
- "`" :actions.cd
- "~" :actions.tcd
- :gs :actions.change_sort
- :gx :actions.open_external
- :g. :actions.toggle_hidden
- "g\\\\" :actions.toggle_trash}
- :float {:padding 1 :max_width 64 :max_height 32}})
-
-(local keys [{1 "-"
- 2 "<cmd>lua require(\"oil\").open_float()<cr>"
- :desc "Open parent directory"}])
-
-{1 :stevearc/oil.nvim : opts : keys}