diff options
author | Christian Segundo | 2025-01-14 18:32:31 +0100 |
---|---|---|
committer | Christian Segundo | 2025-01-14 18:32:31 +0100 |
commit | da24d090a48914abea26dcb7ccb47626e02797f1 (patch) | |
tree | eb93ec489cf7e8cb34349abd337a5b850bc3efa2 | |
parent | 8d325b417ad44481b5351d166ccefd26eee811de (diff) | |
download | config-da24d090a48914abea26dcb7ccb47626e02797f1.tar.gz |
disable statusbar
-rw-r--r-- | lua/core/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/core/init.lua b/lua/core/init.lua index 7543052..6473f25 100644 --- a/lua/core/init.lua +++ b/lua/core/init.lua @@ -22,7 +22,7 @@ vim.opt.colorcolumn = "80" vim.opt.cursorline = true vim.opt.foldlevelstart = 99 vim.opt.showtabline = 1 -vim.opt.laststatus = 3 -- Single status line across all buffers +vim.opt.laststatus = 1 vim.opt.undofile = true vim.opt.list = true -- Show some invisible characters like tabs vim.opt.undodir = vim.fn.stdpath("data") .. "/undo" |