summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/options.lua
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-08-26 21:52:53 -0400
committertriethyl <triethylammonium@pm.me>2025-08-26 21:56:22 -0400
commit53a0a84692b171af0fc9cc8a8d9b3ec41a55d874 (patch)
treedbb06fdcf5a4d51dbe52e09bf541ce7b925db1dc /pkgs/custom-neovim/config/lua/options.lua
parentf5f0d7bc38095aebe74ebf2a97ba823a8a57b8b8 (diff)
neovim: added winbar and tab counter
Diffstat (limited to 'pkgs/custom-neovim/config/lua/options.lua')
-rw-r--r--pkgs/custom-neovim/config/lua/options.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/custom-neovim/config/lua/options.lua b/pkgs/custom-neovim/config/lua/options.lua
index 2fdb796..7b6bbe0 100644
--- a/pkgs/custom-neovim/config/lua/options.lua
+++ b/pkgs/custom-neovim/config/lua/options.lua
@@ -4,13 +4,14 @@ vim.o.mouse = "" -- Don't use mouse
-- UI
vim.o.winborder = 'rounded' -- rounded window borders where possible.
-vim.o.showtabline = 1 -- whether to only show tabline if there is more than one tab.
+vim.o.showtabline = 0 -- whether to only show tabline if there is more than one tab.
vim.o.laststatus = 3 -- only have one statusline at the bottom of the window.
vim.o.showmode = false -- don't show the mode in the commandline.
vim.o.ruler = false -- don't show #,# in the commandline.
vim.o.number = true -- set absolute numbered lines
vim.o.scrolloff = 4 -- minimal number of screen lines to keep above and below the cursor
vim.o.signcolumn = "yes" -- always show the sign column, otherwise it would shift the text each time
+vim.o.winbar = " %f %m"
-- Finding
vim.o.gdefault = true -- Replace globally by default