33 lines
1.0 KiB
Lua
33 lines
1.0 KiB
Lua
---@type LazySpec
|
|
return {
|
|
"AstroNvim/astrocore",
|
|
---@type AstroCoreOpts
|
|
opts = {
|
|
options = {
|
|
opt = {
|
|
background = "dark",
|
|
clipboard = "",
|
|
cmdheight = 1,
|
|
expandtab = true,
|
|
foldmethod = "syntax",
|
|
foldnestmax = 150,
|
|
grepprg = vim.fn.executable("rg") and "rg --vimgrep" or nil,
|
|
guifont = { "VictorMono Nerd Font", "Hack Nerd Font Mono", ":h10" },
|
|
listchars = { tab = "> ", extends = ">", precedes = "<", space = "·" },
|
|
number = true,
|
|
relativenumber = false,
|
|
shiftwidth = 4,
|
|
signcolumn = "auto",
|
|
spell = false,
|
|
tabstop = 4,
|
|
textwidth = 120,
|
|
wrap = true,
|
|
path = vim.list_extend(vim.opt.path:get(), { "**" }),
|
|
},
|
|
g = {
|
|
rust_recommended_style = 0,
|
|
},
|
|
},
|
|
},
|
|
}
|