refactor!: options moved to AstroCore

This commit is contained in:
Micah Halter
2024-02-13 10:31:51 -05:00
parent 568db39c67
commit 4aa332ee0b
3 changed files with 23 additions and 12 deletions

17
lua/plugins/options.lua Normal file
View File

@ -0,0 +1,17 @@
if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
return {
"AstroNvim/astrocore",
---@type AstroCoreOpts
opts = {
options = {
opt = {
relativenumber = true, -- sets vim.opt.relativenumber
number = true, -- sets vim.opt.number
spell = false, -- sets vim.opt.spell
signcolumn = "auto", -- sets vim.opt.signcolumn to auto
wrap = false, -- sets vim.opt.wrap
},
},
},
}