You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
463 B
Lua
22 lines
463 B
Lua
return {
|
|
'stevearc/oil.nvim',
|
|
---@module 'oil'
|
|
---@type oil.SetupOpts
|
|
opts = {},
|
|
dependencies = {
|
|
{ 'echasnovski/mini.icons', opts = {} },
|
|
{ 'nvim-tree/nvim-web-devicons', opts = {} },
|
|
},
|
|
config = function()
|
|
require('oil').setup {
|
|
keymaps = {
|
|
['<Esc>'] = 'actions.close',
|
|
['<C-h>'] = false,
|
|
},
|
|
}
|
|
end,
|
|
keys = {
|
|
{ '-', '<cmd>Oil --float<cr>', mode = 'n', desc = 'Open Floating Filesystem' },
|
|
},
|
|
}
|