Neovim laststatus 3

statusline comes at the bottom of each window in Neovim. With laststatus 3 you can now have statusline per neovim instance. Meaning you have 1 statusbar at the bottom showing the current window’s status.

feat(statusline): add global statusline #17266

Usage

vimscript

set laststatus=3

lua

vim.opt.laststatus = 3

Related