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 | 563e663207ae34001c6f420c8047aeef1e739b53 (patch) | |
| tree | 15ad0e07f31b6319f68388cd9d63cb406aba365b | |
| parent | 3e98a0bdb3b1546ba4d4651b0f803de1924e57d5 (diff) | |
| download | dotfiles-563e663207ae34001c6f420c8047aeef1e739b53.tar.gz dotfiles-563e663207ae34001c6f420c8047aeef1e739b53.zip | |
refactor(nvim): move winbar option and use vim.opt
| -rw-r--r-- | .config/nvim/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 30eb371..9ccdfaa 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -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 |
