mirror of
https://github.com/zoriya/flake.git
synced 2025-12-18 20:45:20 +00:00
24 lines
441 B
Lua
24 lines
441 B
Lua
return {
|
|
{
|
|
"oil.nvim",
|
|
lazy = false,
|
|
load = function() end,
|
|
keys = {
|
|
{ "-", "<CMD>Oil<CR>", desc = "Open parent directory" },
|
|
{ "<BS>", "<CMD>Oil<CR>", desc = "Open parent directory" },
|
|
},
|
|
opts = {
|
|
skip_confirm_for_simple_edits = true,
|
|
view_options = {
|
|
show_hidden = true,
|
|
},
|
|
keymaps = {
|
|
["<BS>"] = "actions.parent",
|
|
},
|
|
},
|
|
after = function(plug)
|
|
require("oil").setup(plug.opts)
|
|
end
|
|
}
|
|
}
|