1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00

Highlight whitespace

This commit is contained in:
Dan Barber 2024-02-02 14:47:30 -06:00
parent 391cf12a98
commit 48cca16023

View File

@ -25,6 +25,10 @@ end
vim.opt.textwidth = 80
vim.opt.colorcolumn = table.concat(colorcolumns, ",")
-- Highlight trailing whitespace
vim.opt.listchars = "tab:▸·,trail:·,nbsp:·"
vim.opt.list = true
-- Open new split panes to the right and bottom, which feels more natural
vim.opt.splitbelow = true
vim.opt.splitright = true