dotfiles/astronvim/lua/user/options.lua

28 lines
525 B
Lua
Raw Normal View History

2023-04-16 00:10:33 +02:00
return {
opt = {
cursorline = true,
expandtab = true,
gdefault = true,
hlsearch = false,
ignorecase = true,
number = true,
shiftround = true,
relativenumber = false,
showmode = false,
smartcase = true,
splitbelow = true,
splitright = true,
termguicolors = true,
writebackup = false,
clipboard = "",
foldcolumn = "0",
2023-04-16 00:26:48 +02:00
laststatus = 2,
2023-04-16 00:10:33 +02:00
mouse = "",
scrolloff = 5,
shiftwidth = 2,
softtabstop = 2,
tabstop = 2,
updatetime = 100,
},
}