adelarsq/image_preview.nvim

github github
media
stars 96
issues 2
subscribers 6
forks 3
CREATED

2022-10-08

UPDATED

2 months ago


Image Preview for Neovim

Neovim plugin for image previews.

At moment depends on WezTerm image terminal support.

image

Installing

Plug

Plug 'https://github.com/adelarsq/image_preview.nvim'

Lazy

{
    'https://github.com/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

Related Plugins