aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2022-10-29 14:03:01 +0200
committersrdusr <trevorgray@srdusr.com>2022-10-29 14:03:01 +0200
commitc5d928b01cb2e5bc5acd103f2e200d91fba1d31d (patch)
tree61ba5f6ed8615a19d325f8263f5f21ddf6dceeb9 /lua
parent4159f805b400184cb2541e2cc8f1a52dc475d238 (diff)
downloaddotfiles-c5d928b01cb2e5bc5acd103f2e200d91fba1d31d.tar.gz
dotfiles-c5d928b01cb2e5bc5acd103f2e200d91fba1d31d.zip
Fixed tabline not showing
Diffstat (limited to 'lua')
-rw-r--r--lua/user/opts.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/user/opts.lua b/lua/user/opts.lua
index 38e1250..3033325 100644
--- a/lua/user/opts.lua
+++ b/lua/user/opts.lua
@@ -94,7 +94,7 @@ vim.opt.report = 0 -- Always report changed lines.
---- bottom of the split. A quick fix is to just set the statusline
---- to empty whitespace (it can't be an empty string because then
---- it'll get replaced by the default stline).
-vim.opt.stl = " "
+--vim.opt.stl = " "
-- Backup/undo
vim.opt.backup = false --
@@ -153,9 +153,10 @@ vim.opt.listchars = { tab = "▸ ", trail = "·" } --
--vim.opt.fillchars:append({ eob = " " }) -- remove the ~ from end of buffer
vim.opt.modeline = true --
vim.opt.modelines = 3 -- modelines (comments that set vim options on a per-file basis)
-vim.opt.modelineexpr = true
+--vim.opt.modelineexpr = true
--vim.opt.nofoldenable = true -- turn folding off
--vim.opt.foldenable = false -- turn folding off
+vim.o.showtabline = 2
-- Highlights
vim.opt.incsearch = true -- Highlight while searching with / or ?.