goolord / alpha-nvim

a lua powered greeter like vim-startify / dashboard-nvim
MIT License
1.92k stars 113 forks source link

How to remove statusline #42

Closed Leiyi548 closed 3 years ago

Leiyi548 commented 3 years ago

I wanted to remove statusline, but I didn't see how to do it image

goolord commented 3 years ago

same as hiding the tabline but just replace with however you would load / unload your statusline autocmd FileType alpha set laststatus=0 | autocmd BufUnload <buffer> set laststatus=whatever there isn't really a better/more general way to do this and having filetype specific statuslines generally sucks if you're not already using a statusline plugin, in which case it's that plugin's responsibility

Leiyi548 commented 3 years ago

@goolord Thankyou!