diff options
| author | Christian Segundo | 2024-12-08 13:06:41 +0100 |
|---|---|---|
| committer | Christian Segundo | 2024-12-08 13:06:41 +0100 |
| commit | a459ffd8135d27499a616f5405468a1b20677223 (patch) | |
| tree | 4a40f775e8f758d1c32636deb0b593de1ea14de4 /lua/core | |
| parent | b0a97cff0312d0634442147bbe4a8c63c9e81e3d (diff) | |
| download | config-a459ffd8135d27499a616f5405468a1b20677223.tar.gz | |
misc stylua
Diffstat (limited to 'lua/core')
| -rw-r--r-- | lua/core/init.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/core/init.lua b/lua/core/init.lua index 2c03c1d..16dfab5 100644 --- a/lua/core/init.lua +++ b/lua/core/init.lua @@ -20,7 +20,8 @@ vim.opt.laststatus = 3 -- Single status line across all buffers vim.opt.undofile = true vim.opt.list = true -- Show some invisible characters like tabs vim.opt.undodir = vim.fn.stdpath("data") .. "/undo" -vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions" +vim.o.sessionoptions = + "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions" -- TODO make it pretty with the highlights --vim.opt.winbar = '%!luaeval("_winbar()")' -- The winbar text, I don't know if it is possible to embed it directly here :( --vim.opt.winbar = "%=%m %t%=" |