You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
statusline has some delay to show up after closing neotree, other plugins such as nvim-tree seems to not face similar issue. Nvim-tree actually also has a delay but very short one that feels like a flicker
statusline_delay.mov
Found #353 kinda similar so I updated my lualine's refresh value but didn't help much. I still see the same delay.
After updating to the latest neovim nightly v0.10.0-dev-a84b454 it seems a bit better now.
With below minimal config both Noice and Neotree seems to work fine, so this might suggest some lualine delay as the issue above?
-- DO NOT change the paths and don't remove the colorschemelocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"folke/tokyonight.nvim",
"folke/noice.nvim",
-- add any other plugins here"nvim-neo-tree/neo-tree.nvim",
"nvim-lua/plenary.nvim",
"rodhash/nvim-web-devicons",
"MunifTanjim/nui.nvim",
"rcarriga/nvim-notify",
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else here
Not sure what is the issue causing all this delay.. I've lowered the lualine refresh value to almost zero but still having this delay .. this is weird.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
HI,
statusline has some delay to show up after closing neotree, other plugins such as nvim-tree seems to not face similar issue. Nvim-tree actually also has a delay but very short one that feels like a flicker
statusline_delay.mov
Found #353 kinda similar so I updated my lualine's refresh value but didn't help much. I still see the same delay.
After updating to the latest neovim nightly
v0.10.0-dev-a84b454
it seems a bit better now.With below minimal config both Noice and Neotree seems to work fine, so this might suggest some lualine delay as the issue above?
Not sure what is the issue causing all this delay.. I've lowered the lualine refresh value to almost zero but still having this delay .. this is weird.
Beta Was this translation helpful? Give feedback.
All reactions