whitespace improvements

This commit is contained in:
2026-06-15 23:20:32 +02:00
parent c9050166ed
commit e585bc204a

View File

@@ -4,7 +4,7 @@ vim.opt.relativenumber = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.expandtab = false
vim.opt.smartindent = true
@@ -29,12 +29,12 @@ vim.opt.listchars = {
trail = "·",
extends = "",
precedes = "",
eol = "",
nbsp = ""
}
-- Enable the display of hidden characters
vim.opt.list = true
-- only show the invisible characters inside the code editing buffers
vim.cmd([[autocmd BufWinEnter,TermOpen * if &buftype != '' | setlocal nolist | endif]])
vim.env.BASH_ENV = vim.env.HOME .. "/dotfiles/aliases"