1
0
neovim_config/lua/barink/plugins/oil.lua
Nigel 430a2879e9
FEAT: conform and oil added
Changes
- Removed hardtime ( messages were too annoying)
- Cleaned up key mappings file
- Disabled Lazy loading
- Added Oil and conform
2024-05-28 21:11:34 +02:00

15 lines
338 B
Lua

return {
'stevearc/oil.nvim',
opts = {},
dependencies = {"nvim-tree/nvim-web-devicons"},
config = function ()
require("oil").setup(
{
default_file_explorer=false
}
)
vim.keymap.set("n", "-", "<CMD>Oil<CR>", { desc = "Open parent directory"})
end
}