add oil. try to get python debugger working
This commit is contained in:
parent
4e1dea8c2b
commit
30101a9027
4 changed files with 25 additions and 3 deletions
15
lua/custom/plugins/oil.lua
Normal file
15
lua/custom/plugins/oil.lua
Normal 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 })
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue