nvim/lua/plugins/oil.lua
Evie Litherland-Smith 33e0cf64f7 Delete some plugins
Show hidden files in Oil
Add extra navbuddy dependencies
Load lualine at VeryLazy step
2023-06-11 08:41:00 +01:00

19 lines
532 B
Lua

return {
"stevearc/oil.nvim",
cond = not vim.g.vscode,
dependencies = { "nvim-tree/nvim-web-devicons" },
cmd = "Oil",
init = function()
vim.keymap.set("n", "<leader>o", "<cmd>Oil<cr>")
if vim.fn.argc() == 1 then
local stat = vim.loop.fs_stat(vim.fn.argv(0))
if stat and stat.type == "directory" then require "oil" end
end
end,
config = true,
opts = {
columns = { "icon", "permissions" },
view_options = { show_hidden = true },
},
}