add oil. try to get python debugger working

This commit is contained in:
Stephen Leece 2024-03-30 11:53:27 -07:00
parent 4e1dea8c2b
commit 30101a9027
4 changed files with 25 additions and 3 deletions

View file

@ -0,0 +1,15 @@
-- use `nvim .` or `knv .` to open neovim with this active
return {
'stevearc/oil.nvim',
opts = {
view_options = {
-- Show files and directories that start with "."
show_hidden = true,
}
},
-- Optional dependencies
dependencies = { "nvim-tree/nvim-web-devicons" },
-- set keymap for opening Oil file explorer
vim.keymap.set({ 'n' }, '<leader>oe', ':Oil<CR>', { desc = 'Open Oil file explorer', silent = true })
}