diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-22 16:50:42 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-22 16:50:42 +0200 |
| commit | ab30d3988dbba43c893083d607064ec22e8ca083 (patch) | |
| tree | ff166b36d0f2a45f8d5f51669b71977ee560c2cf /init.lua | |
| parent | 6e6915ac57232d195e9dbfab794cd9f5e43acd77 (diff) | |
| download | nvim-config-ab30d3988dbba43c893083d607064ec22e8ca083.tar.gz nvim-config-ab30d3988dbba43c893083d607064ec22e8ca083.zip | |
refactor(nvim): move winbar option and use vim.opt
Diffstat (limited to 'init.lua')
| -rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -171,8 +171,8 @@ vim.opt.conceallevel = 2 -- Hide text with the "conceal" syntax attribute vim.opt.showtabline = 2 -- Always show tabline vim.opt.list = true -- Display <Tab> and other non-printables vim.opt.winborder = "rounded" -- Rounded outline for floating windows -vim.o.winbar = "%#WinBarCwd#%{fnamemodify(getcwd(),':~')}%* | %#WinBarFile#%f%*" vim.opt.updatetime = 1000 -- Swap file save frequency; also how often GitGutter signs update in ms +vim.opt.winbar = "%#WinBarCwd#%{fnamemodify(getcwd(),':~')}%* | %#WinBarFile#%f%*" vim.opt.listchars = { -- Characters used by 'list' tab = "> ", -- Tab trail = "-", -- Trailing space |
