nvim/lua/plugins/oil.lua

9 lines
268 B
Lua
Raw Permalink Normal View History

return {
'stevearc/oil.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
config = function()
2023-06-16 17:25:34 +02:00
require('oil').setup { view_options = { show_hidden = true } }
vim.keymap.set('n', '-', require('oil').open, { desc = 'Open parent directory' })
end,
}