Image Preview.nvim Save

Image Preview for Neovim 🖼

Project README

Image Preview for Neovim

Neovim plugin for image previews. It has support for Wezterm and Kitty right now.

Using with WezTerm:

image

Using with Kitty

image preview with kitty

Installing

Plug

Plug 'adelarsq/image_preview.nvim'

Lazy

{
    'adelarsq/image_preview.nvim',
    event = 'VeryLazy',
    config = function()
        require("image_preview").setup()
    end
},

Configuration

Vim Script:

lua <<EOF
require("image_preview").setup({})
EOF

Lua:

require("image_preview").setup({})

neo-tree.nvim

To use on neo-tree.nvim it's necessary to add a command on the setup, as shows bellow:

require("neo-tree").setup({
  filesystem = {
    window = {
      mappings = {
        ["<leader>p"] = "image_wezterm", -- " or another map
      },
    },
    commands = {
      image_wezterm = function(state)
        local node = state.tree:get_node()
        if node.type == "file" then
          require("image_preview").PreviewImage(node.path)
        end
      end,
    },
  },
}

Special thanks for @pysan3 for point that.

Keybinds

  • <leader>p - image preview for file under cursor

Features

Open Source Agenda is not affiliated with "Image Preview.nvim" Project. README Source: adelarsq/image_preview.nvim
Stars
110
Open Issues
3
Last Commit
3 weeks ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating