diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-22 11:17:27 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-22 11:17:27 +0200 |
| commit | 2371ef8c739dc4ddf63823c6035a7177fc083970 (patch) | |
| tree | ebb34eda506b101c86d58fce9e4a4888c3cfd748 /.config/nvim/init.lua | |
| parent | f7df2e3d5627e00e87525131cd98da49abc57c5b (diff) | |
| download | dotfiles-2371ef8c739dc4ddf63823c6035a7177fc083970.tar.gz dotfiles-2371ef8c739dc4ddf63823c6035a7177fc083970.zip | |
misc(nvim): rounded borders and default bg color for floating windows
Diffstat (limited to '.config/nvim/init.lua')
| -rw-r--r-- | .config/nvim/init.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 35d97f3..3f7515c 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -155,6 +155,7 @@ vim.opt.smartcase = true -- Search is case-sensitive if searching for uppercase 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.opt.listchars = { -- Characters used by 'list' tab = "> ", -- Tab trail = "-", -- Trailing space |
