Do I need to move away from gVim/#Vim? I'm not sure, but we're in this game to try new things, right?
Is it worth it to move from Vimscript to Lua?
Пару дней использовал #neovide. Надоело, вернул `foot nvim`. Как же легко дышится, когда редактор открывается мгновенно! Хоть я и отключил часть гламура, закинув `no-multigrid = true` в `~/.config/neovide/config.toml`, neovide всё равно какой-то медленный, вязкий, с фризами. Вот вам и blazing fast rust. Но я, конечно, спишу это на подход к разработке, а не на сишное байтодрочерство.
#wezterm сюда же. Эта падла жрёт ресурсов, как браузер. Фичей-то много, но быстрая работа таки перевешивает. Для меня это несколько неожиданно; обычно я несколько пренебрегаю скоростью работы. Однако это та вещь, которую просто нужно прочувствовать.
Just found Neovide! 🤩 It's a super-fast wrapper for NeoVim, and it’s fantastic on macOS. If you love NeoVim & want a performant, familiar feel, give it a try! I am just testing this for a couple of hours, so hard to say solid conclusions, although I am really enjoying it so far! ✨
#productivity #workflow #devtools #neovim #nvim #editor #texteditor #vim #neovide #coding #programming #development #tech #software
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()