chore(neovim): Use snacks.nvim to view images

- Remove `image.nvim` for image display on markdown
- Simple code reorg
This commit is contained in:
Pratik Tripathy
2025-07-22 16:40:36 +05:30
parent 9ed4ee445b
commit eb4bd841b3
4 changed files with 17 additions and 19 deletions

View File

@@ -35,6 +35,14 @@ return {
input = {
enabled = true,
},
image = {
enabled = true,
doc = {
max_width = 80,
max_height = 68,
},
img_dirs = { "img", "images", "assets", "static", "public", "media", "attachments", ".artifacts/img" },
},
lazygit = {
enabled = true,
configure = true,
@@ -140,7 +148,7 @@ return {
desc = "Notification History",
},
{
"<leader>z",
"<S-Esc>",
function()
Snacks.zen()
end,
@@ -156,12 +164,6 @@ return {
},
},
-- Navigate between NVIM & Tmux splits seamlessly
{
"christoomey/vim-tmux-navigator",
cond = require("config.util").is_not_vscode(),
},
-- Navigate between NVIM & kitty splits
{
"knubie/vim-kitty-navigator",