chore: Idk

This commit is contained in:
2026-03-29 10:32:08 +02:00
parent 19b4d6129a
commit cc907c654d
4 changed files with 25 additions and 0 deletions

View File

@@ -15,3 +15,12 @@ vim.keymap.set("v", "<", "<gv", { desc = "Keep selection after outdent" })
vim.keymap.set("v", ">", ">gv", { desc = "Keep selection after indent" })
vim.opt.shell = "fish"
vim.api.nvim_create_autocmd("BufDelete", {
callback = function()
local bufs = vim.t.bufs
if #bufs == 1 and vim.api.nvim_buf_get_name(bufs[1]) == "" then
vim.cmd "Nvdash"
end
end,
})