Files
dotfiles/private_dot_config/nvim/lua/config/options.lua
2025-11-11 18:59:30 +01:00

20 lines
330 B
Lua

local options = {
termguicolors = true,
number = true,
tabstop = 4,
softtabstop = 0,
expandtab = true,
shiftwidth = 4,
smarttab = true,
list = true,
listchars = 'tab:» ,lead:•,trail:•',
}
for k, v in pairs(options) do
vim.opt[k] = v
end
vim.diagnostic.config({
signs = false,
})