26 lines
445 B
Lua
26 lines
445 B
Lua
local options = {
|
|
cursorline = true, --not highlight line
|
|
termguicolors = true,
|
|
|
|
number = true, --numbered lines
|
|
|
|
--indentation stuff
|
|
softtabstop = 0,
|
|
tabstop = 2,
|
|
expandtab = true,
|
|
shiftwidth = 2,
|
|
smarttab = true,
|
|
|
|
--print blank and tabs
|
|
list = true,
|
|
listchars = 'tab:» ,lead:•,trail:•',
|
|
}
|
|
|
|
for k, v in pairs(options) do
|
|
vim.opt[k] = v
|
|
end
|
|
|
|
vim.diagnostic.config({
|
|
signs = false,
|
|
})
|