Andrew Wray

Results 7 comments of Andrew Wray

I found that [this line](https://github.com/jeffreytse/zsh-vi-mode/blob/d287665d1df1d39d54dff46810ea8e76adbca657/zsh-vi-mode.zsh#L2926) contains a reset prompt command that happens every time `zvm_select_vi_mode()` is called, which when commented out (mostly) resolved the issue of the last line getting...

I was not ever able to. Though, if you are interested in getting into similar kinds of projects, check out Valerio Velardo's youtube channel. My [repo]( https://github.com/awray3/music_clf) is similar in...

Here's the output of debug logs: No image is displayed either, even though I have image.nvim installed and configured correctly (I think) with all optional dependencies in my neovim environment...

I can confirm I have image.nvim working (I put the neovim logo there with `require('image').from_file(...)`) and I've set the image.nvim config. I use Lunarvim for the base of my config,...

Yes, here's [my config](https://github.com/awray3/dotfiles-lunarvim/blob/main/.config/lvim/config.lua). I'm running on kitty.

Aha, I found what was missing from the init function: ``` vim.g.molten_image_provider = "image.nvim" ``` Now plots that come back as `image/png` work! Though I guess there's still the original...