This commit is contained in:
2023-11-03 21:04:02 +01:00
commit 3b1035fd35
14 changed files with 372 additions and 0 deletions

35
options.lua Normal file
View File

@@ -0,0 +1,35 @@
return {
opt = {
-- laststatus = 2,
background = "dark",
clipboard = "",
cmdheight = 1,
expandtab = true,
foldenable = true,
foldlevelstart = 100,
foldmethod = "syntax",
foldnestmax = 150,
grepprg = "rg --vimgrep",
guifont = "VictorMono Nerd Font, Hack Nerd Font Mono:h10",
listchars = { tab = '> ', extends = '>', precedes = '<', space = '·' },
number = true,
relativenumber = false,
scrolloff = 0,
shiftwidth = 4,
signcolumn = "auto",
spell = false,
tabstop = 4,
textwidth = 80,
wrap = true,
},
g = {
autoformat_enabled = false,
autopairs_enabled = true,
cmp_enabled = true,
diagnostics_enabled = true,
icons_enabled = true,
inlay_hints_enabled = true,
mapleader = " ",
status_diagnostics_enabled = true,
},
}