We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have installed image_preview on wezterm and when i use neotree it doesn't work
here is my config: neo-tree
return { "nvim-neo-tree/neo-tree.nvim", config = function() require("neo-tree").setup({ filesystem = { window = { mappings = { ["<leader>p"] = "image_wezterm", -- hoặc một phím tắt khác }, }, commands = { image_wezterm = function(state) local node = state.tree:get_node() if node.type == "file" then require("image_preview").PreviewImage(node.path) end end, }, }, }) end, }
and here is my image-preview config:
return { "adelarsq/image_preview.nvim", event = "VeryLazy", config = function() require("image_preview").setup() end, }
I currently use :
The text was updated successfully, but these errors were encountered:
Maybe that something has changed on the neo-tree side. I don't it anymore, but I will take a look next few days.
Sorry, something went wrong.
No branches or pull requests
I have installed image_preview on wezterm and when i use neotree it doesn't work
here is my config:
neo-tree
and here is my image-preview config:
I currently use :
The text was updated successfully, but these errors were encountered: