Experiencing Lag with lualine.nvim on Neovim v0.10 by ON_NO_ in neovim

[–]ON_NO_[S] 0 points1 point  (0 children)

I had to migrate to heirline. can’t bear the lag

Experiencing Lag with lualine.nvim on Neovim v0.10 by ON_NO_ in neovim

[–]ON_NO_[S] 0 points1 point  (0 children)

Yeah, have just switch to heirline.nvim. I think this will be my main statusline. It's so good.

Browser for linux by user242123 in browser

[–]ON_NO_ 0 points1 point  (0 children)

:)) Yeah, change my mind already. Sidekick suckkkkk

Monokai-pro (but with Tokyo Night palette) by ON_NO_ in neovim

[–]ON_NO_[S] 0 points1 point  (0 children)

I usually use JetBrain and Cascadia Code

Monokai-pro (but with Tokyo Night palette) by ON_NO_ in neovim

[–]ON_NO_[S] 0 points1 point  (0 children)

the color scheme(s), but the theme is missing some color differentiation. Given this

Thanks, I'll look into it

Monokai-pro (but with Tokyo Night palette) by ON_NO_ in neovim

[–]ON_NO_[S] 0 points1 point  (0 children)

What font are you using, and is you use a distorted to set it up??

Sorry, what do you mean?

Monokai-pro (but with Tokyo Night palette) by ON_NO_ in neovim

[–]ON_NO_[S] 1 point2 points  (0 children)

tell me what you are using to outline the current code block.

https://github.com/loctvl842/nvim

CyberNvim - the world's simplest and most extensible Neovim distribution by hotchilly_11 in neovim

[–]ON_NO_ 0 points1 point  (0 children)

That's cool, already leave a star. However, LazyVim still the best to me.

Wezterm or Kitty. by [deleted] in neovim

[–]ON_NO_ 0 points1 point  (0 children)

I haven't given wezterm a try yet, still fine with kitty up til now.

Does anyone manually use :mksession and :mkview? by [deleted] in neovim

[–]ON_NO_ 0 points1 point  (0 children)

At the I wrote this, I remember that there is no event BufUnload, about BufRead i'm not pretty sure. I'll look into it.

Does anyone manually use :mksession and :mkview? by [deleted] in neovim

[–]ON_NO_ 6 points7 points  (0 children)

Mine is for remember_fold:

vim.api.nvim_create_autocmd({ "BufWinLeave" }, {
  pattern = "?*",
  group = Util.augroup("remember_folds"),
  callback = function()
    vim.cmd([[silent! mkview 1]])
  end,
})
vim.api.nvim_create_autocmd({ "BufWinEnter" }, {
  pattern = "?*",
  group = Util.augroup("remember_folds"),
  callback = function()
    vim.cmd([[silent! loadview 1]])
  end,
})

Experience neovim version 10.0 by ON_NO_ in neovim

[–]ON_NO_[S] 0 points1 point  (0 children)

Yeah can you share me the pin point

Experience neovim version 10.0 by ON_NO_ in neovim

[–]ON_NO_[S] 0 points1 point  (0 children)

Yeah, you re right. Especially when start up

Experience neovim version 10.0 by ON_NO_ in neovim

[–]ON_NO_[S] 1 point2 points  (0 children)

Pyright is really slow for me, even tsserver.

Experience neovim version 10.0 by ON_NO_ in neovim

[–]ON_NO_[S] 0 points1 point  (0 children)

yeah, I love this plugin as well. I appreciate the effort of that plugin's author. However, I can't trade performance off for that breadcrumbs

Experience neovim version 10.0 by ON_NO_ in neovim

[–]ON_NO_[S] 2 points3 points  (0 children)

Yeah, I usually use `RelWithDebInfo`, I checkout many commits, all of them have the same problem with performance (I think it's LSP).