#neovide — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #neovide, aggregated by home.social.
-
Okay, with #neovide I can connect multiple clients to a single #neovim instance, locally or remotely, which is great.
However they all share the same view of the neovim session/state and act a bit weird if their application windows are not all the same size.
Is there a way for each connected neovide client to have its own collection of windows/tabs/etc (still sharing the same underlying neovim buffers) instead of being just a shared view onto the same collection?
-
-
TIL: on Windows, #Neovide can be tweaked with the following autocmd to ensure the title bar matches the colorscheme background. 😎
local function set_titlebar_color()
vim.g.neovide_title_background_color =
string.format("%x", vim.api.nvim_get_hl(0, {
id = vim.api.nvim_get_hl_id_by_name("Normal")
}).bg)
end
vim.api.nvim_create_autocmd({ "ColorScheme" }, {
pattern = { "*" },
callback = set_titlebar_color,
})
set_titlebar_color() -
-
New patch for Fox #ide v0.8.2
In this patch I just changed the #Neovide config and #telescope live grep style.
#ide #editor #code #programming #program #lua #neovim #nvim #vim #config #neovimconf
https://github.com/Mr-Fox-h/fox-ide/releases/tag/v0.8.2 -
wuha Neovide is on Flathub!
Never felt the need to use a graphical interface for Neovim but this is definitely a great step forward. -
-
I didn't think I'd leave the terminal, but #Neovide strikes a great balance of UI goodies and minimalism. The animated cursor is also great if you're showing a coworker something in your editor. I had some coworkers who couldn't understand what I was doing when I opened a terminal and started switching between buffers and stuff 😅
-
https://github.com/neovide/neovide/discussions/2322
New #neovide release <3
Including my small patch to support colored `--help`
-
Discovered #Neovide via this toot. I'm quite the #terminal purist, but I gotta say the cursor warp animation and smooth scrolling is much more than eye candy. It helps a lot with keeping visual momentum, i.e. reduces the cognitive effort required to keep track of a buffer's content while moving around.
Thanks to the built-in #neovim terminal (#vim too), I'll still have everything in one place. I'll just run the terminal inside vim instead of vim inside the terminal ;-)
-
Good morning folks. This week I have taken a dive and am experimenting with learning #neovim (currently rocking #neovide front-end, with the #NvChad starting config). So far enjoying my little venture into this world, but it cannot be denied that the learning curve is STEEP.
Does anyone have any suggestions for resources / tips to smooth out this learning curve a little?
-
Working on #adventofcode2023 with my new #Neovim setup sent me down a rabbit hole that led me to post a question on the #Kitty terminal discussions: https://github.com/kovidgoyal/kitty/discussions/6882
I'm using nvim-tree, and I wanted to unmap the (c)opy and (p)aste keys and remap them to ⌘C and ⌘V, but my mappings weren't working.
I’m only using Kitty so I could map ⌘ keys in Neovim, unlike #iTerm which had too many hotkey conflicts. These keys work in #Neovide but unfortunately other keys don’t.
-
For anyone using #neovide under #Wayland with #Gnome, we now have window shadows.
But this is still experimental, as we're waiting for sctk-adwaita release, and winit update to support it.
You can try building `window-shadows` branch.
https://github.com/neovide/neovide/commit/9dc64196d0809a72ef22543fb0e0b13b674f8e98
-
#emacs eye candy: https://github.com/manateelazycat/holo-layer
I am in awe of this package. #neovide tier animations are no longer out of our reach! -
Ok, today in #Unholy:
Can I get #Neovide to talk to #Neovim over docker forwarded stdio?
Initial results indicate there is bullshit afoot, but I still need to track down exactly what it is.
* Mismatches in how well cooked stdio is?
* Mismatches in pty expectations?At the very least, neovide doesn't like the version of nvim that ships in debian stable.
-