initial commit

This commit is contained in:
hgranthorner
2026-09-14 16:09:15 -04:00
commit 0485e97fd2
13 changed files with 270 additions and 0 deletions

12
lua/plugins/oil.lua Normal file
View File

@@ -0,0 +1,12 @@
vim.pack.add({
'https://github.com/stevearc/oil.nvim',
})
require("oil").setup()
local nmap_leader = function(suffix, rhs, desc)
vim.keymap.set('n', '<Leader>' .. suffix, rhs, { desc = desc })
end
nmap_leader('rw', function() vim.cmd[[Oil]] end)