nvim config

This commit is contained in:
sebastian
2025-04-10 14:36:56 +02:00
parent e2f101f3ce
commit ac74fb8b70
18 changed files with 346 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
return {
"stevearc/oil.nvim",
config = function()
local oil = require("oil")
oil.setup()
vim.keymap.set("n", "-", oil.toggle_float, {})
end,
}