dotfiles/_unused/astronvim/lua/user/options.lua

31 lines
592 B
Lua
Raw Normal View History

2023-04-16 00:10:33 +02:00
return {
opt = {
2023-10-09 23:17:39 +02:00
cursorcolumn = true,
2023-04-16 00:10:33 +02:00
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,
2023-10-09 23:17:39 +02:00
-- 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-10-09 23:17:39 +02:00
-- mouse = "",
2023-04-16 00:10:33 +02:00
scrolloff = 5,
shiftwidth = 2,
softtabstop = 2,
tabstop = 2,
updatetime = 100,
},
}