Better handling of Astrovim's user configuration.

This commit is contained in:
Bartek Stalewski 2024-03-28 00:45:20 +01:00
parent 29bc3efded
commit 8ab1d2f8e3
No known key found for this signature in database
12 changed files with 2 additions and 1 deletions

31
astronvim/options.lua Normal file
View file

@ -0,0 +1,31 @@
return {
opt = {
cursorcolumn = true,
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,
whichwrap = '',
writebackup = false,
clipboard = "",
cmdheight = 1,
foldcolumn = "0",
laststatus = 2,
mouse = "",
scrolloff = 5,
shiftwidth = 2,
softtabstop = 2,
tabstop = 2,
updatetime = 100,
},
}