show tabs

This commit is contained in:
Squibid 2025-10-30 01:04:51 -04:00
parent 30924f12cf
commit f1abf864c1
Signed by: squibid
GPG key ID: BECE5684D3C4005D

View file

@ -17,6 +17,10 @@ vim.o.ts = tabwidth
vim.o.sw = tabwidth vim.o.sw = tabwidth
vim.o.sts = -1 vim.o.sts = -1
-- I'd like to be able to see when I'm using icky tabs
vim.o.list = true
vim.o.listchars = "tab:┌┬┐"
-- Schedule the setting after `UiEnter` because it can increase startup-time. -- Schedule the setting after `UiEnter` because it can increase startup-time.
-- (yoinked from kickstart.nvim) -- (yoinked from kickstart.nvim)
vim.schedule(function() vim.schedule(function()