We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 815c92e commit ca80e2fCopy full SHA for ca80e2f
1 file changed
lua/custom/plugins/oil.lua
@@ -0,0 +1,14 @@
1
+return {
2
+ 'stevearc/oil.nvim',
3
+ ---@module 'oil'
4
+ ---@type oil.SetupOpts
5
+ opts = {},
6
+ -- Optional dependencies
7
+ dependencies = { { 'echasnovski/mini.icons', opts = {} } },
8
+ -- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if you prefer nvim-web-devicons
9
+ keys = {
10
+ { '-', '<CMD>Oil --float<CR>', desc = 'Open parent directory' },
11
+ },
12
+ -- Lazy loading is not recommended because it is very tricky to make it work correctly in all situations.
13
+ lazy = false,
14
+}
0 commit comments