diff options
| author | Crony Akatsuki <crony@cronyakatsuki.xyz> | 2025-10-22 19:39:35 +0200 |
|---|---|---|
| committer | Crony Akatsuki <crony@cronyakatsuki.xyz> | 2025-10-22 19:39:35 +0200 |
| commit | a3f243f85d29c24253de88b2ee8b4c090126b716 (patch) | |
| tree | e0ed8808d04fa6aa1ef04e8a4b3c62a62848c191 /lua | |
| parent | 5501a8027a263ee345f405f858854ad5e50efea7 (diff) | |
| download | nvim-a3f243f85d29c24253de88b2ee8b4c090126b716.zip nvim-a3f243f85d29c24253de88b2ee8b4c090126b716.tar.gz | |
feat: allow for global statusline.
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/config/settings.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/config/settings.lua b/lua/config/settings.lua index 87b0ff7..23a16f2 100644 --- a/lua/config/settings.lua +++ b/lua/config/settings.lua @@ -15,6 +15,9 @@ vim.opt.splitright = true -- disable line wrapping vim.opt.wrap = false +-- enable global statusline +vim.opt.laststatus = 3 + -- setup tabs and indenting vim.opt.expandtab = true vim.opt.smartindent = true |
