dotfiles/astronvim/lua/user/options.lua

30 lines
561 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,
wrap = true,
2023-04-16 00:10:33 +02:00
writebackup = false,
clipboard = "",
2023-04-17 00:56:12 +02:00
cmdheight = 1,
2023-04-16 00:10:33 +02:00
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,
},
}