How to stop showing bottom statusline when lualine is enabled? #1348
Unanswered
Oneechan69
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have
vim.opt.laststatus = 0
in my config, but it only works when lualine is disabled. I did a bunch of looking up and tried the following:require('lualine').setup({ options = { globalstatus = true }})
, as well puttingvim.go.laststatus = 0
inoptions
and in my config. The only difference I noticed with those is that it would go from showing some text in the statusline, to still showing the statusline just with no text.The only thing that works is by writing the commands
set laststatus=0
orlua vim.opt.laststatus=0
after nvim launches. When I omit all settings oflaststatus
in my config and doverbose set laststatus
after starting nvim up withnvim -V1
, it shows nothing. It mentions lua when I don't omit them.Beta Was this translation helpful? Give feedback.
All reactions