Fix formatting; show hidden characters.

main
Joshua Potter 2023-11-18 07:59:56 -07:00
parent 0841698bd4
commit bdcad8505f
3 changed files with 4 additions and 2 deletions

View File

@ -46,6 +46,7 @@
customRC = ''
set colorcolumn=80,100
set expandtab " Spaces instead of tabs.
set list " Show hidden characters.
set shiftwidth=2 " # of spaces to use for each (auto)indent.
set tabstop=2 " # of spaces a <Tab> in the file counts for.
'';

View File

@ -111,6 +111,7 @@ in
vim.g.maplocalleader = '\\'
vim.o.colorcolumn = '80,100'
vim.o.expandtab = true -- Spaces instead of tabs.
vim.o.list = true -- Show hidden characters.
vim.o.shiftwidth = 2 -- # of spaces to use for each (auto)indent.
vim.o.tabstop = 2 -- # of spaces a <Tab> in the file counts for.
'')