diff --git a/lua/custom/plugins/oil.lua b/lua/custom/plugins/oil.lua new file mode 100644 index 0000000..8708b4f --- /dev/null +++ b/lua/custom/plugins/oil.lua @@ -0,0 +1,10 @@ +return { + 'stevearc/oil.nvim', + opts = {}, + -- Optional dependencies + dependencies = { 'nvim-tree/nvim-web-devicons' }, + config = function() + require('oil').setup() + vim.keymap.set('n', 'fe', require('oil').open, { desc = '[F]ile [E]xplorer' }) + end, +} diff --git a/lua/kickstart/plugins/mini.lua b/lua/kickstart/plugins/mini.lua index d77ffc9..3e924a8 100644 --- a/lua/kickstart/plugins/mini.lua +++ b/lua/kickstart/plugins/mini.lua @@ -17,12 +17,6 @@ return { -- - sr)' - [S]urround [R]eplace [)] ['] require('mini.surround').setup() - -- Simple file explorer with in-buffer-editing - require('mini.files').setup() - vim.keymap.set({ 'n', 'v' }, 'fe', function() - MiniFiles.open() - end, { desc = '[F]ile [E]xplorer' }) - -- Simple and easy statusline. -- You could remove this setup call if you don't like it, -- and try some other statusline plugin