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

@@ -9,6 +9,8 @@
"friendly-snippets": { "branch": "main", "commit": "6cd7280adead7f586db6fccbd15d2cac7e2188b9" },
"fzf-lua": { "branch": "main", "commit": "3b01dc83a893749f5ae4639f1aa0af523821840a" },
"gitsigns.nvim": { "branch": "main", "commit": "0a80125bace82d82847d40bc2c38a22d62c6dc2d" },
"hererocks": { "branch": "master", "commit": "3db37265c3839cbd4d27fc73f92fa7b58bc3a76f" },
"image.nvim": { "branch": "master", "commit": "da2be65c153ba15a14a342b05591652a6df70d58" },
"indent-blankline.nvim": { "branch": "master", "commit": "d28a3f70721c79e3c5f6693057ae929f3d9c0a03" },
"lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" },
"markdown-preview.nvim": { "branch": "master", "commit": "a923f5fc5ba36a3b17e289dc35dc17f66d0548ee" },

View File

@@ -22,6 +22,7 @@ M.ui = {
M.nvdash = {
load_on_startup = true,
buttons = {
{ txt = " Empty buffer", keys = "<leader>b", cmd = "Nvdash" },
{ txt = " Find File", keys = "ff", cmd = "Telescope find_files" },
{ txt = " Recent Files", keys = "fo", cmd = "Telescope oldfiles" },
{ txt = "󰈭 Find Word", keys = "fw", cmd = "Telescope live_grep" },

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,
})

View File

@@ -217,4 +217,17 @@ return {
end, { desc = "Opencode: Scroll down" })
end,
},
{
"3rd/image.nvim",
event = "VeryLazy",
opts = {
backend = "ueberzug",
max_width = 600,
max_height = 72,
max_height_window_percentage = math.huge,
max_width_window_percentage = math.huge,
window_overlap_clear_enabled = true,
window_overlap_clear_ft_ignore = { "cmp_menu", "cmp_docs", "" },
},
},
}