refactor!: options moved to AstroCore
This commit is contained in:
17
lua/plugins/options.lua
Normal file
17
lua/plugins/options.lua
Normal 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
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user