adding oil and commenting out nvim-tree for now

This commit is contained in:
Lorne Stalker 2023-09-16 18:46:35 +01:00
parent c855a9f597
commit 198cc65eb6
3 changed files with 28 additions and 5 deletions

View file

@ -4,7 +4,7 @@ return {
opts = {
options = {
icons_enabled = true,
theme = 'onedark',
theme = 'codedark',
component_separators = '|',
section_separators = '',
},

View file

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