summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/options.lua
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-07-08 15:44:17 -0400
committertriethyl <triethylammonium@pm.me>2025-07-08 15:44:17 -0400
commita544c622d31187f245b34b9b8b17cbb63a941480 (patch)
tree5f5f22c3ba814a6880d0849a7076aba10eb99b5e /pkgs/custom-neovim/config/lua/options.lua
parent6646af18a28b5f2ecc56a7d6364b9ca6cb401b8f (diff)
configured lualine and tabby
Former-commit-id: 947770af8ae586dfc89c0d498a766c7aaa802dd2
Diffstat (limited to 'pkgs/custom-neovim/config/lua/options.lua')
-rw-r--r--pkgs/custom-neovim/config/lua/options.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/custom-neovim/config/lua/options.lua b/pkgs/custom-neovim/config/lua/options.lua
index a51e319..14ee7d1 100644
--- a/pkgs/custom-neovim/config/lua/options.lua
+++ b/pkgs/custom-neovim/config/lua/options.lua
@@ -1,7 +1,9 @@
-- General Settings
vim.o.winborder = 'rounded'
-vim.o.showtabline = 1
-vim.o.showmode = false
+vim.o.showtabline = 2 -- 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.icm = 'split'
vim.o.cia = 'abbr,kind,menu'
vim.o.mouse = ""