Move options to custom options file

This commit is contained in:
Mark 2023-12-27 13:00:21 -05:00
parent f51f0ad975
commit 2026a4e5e4
2 changed files with 4 additions and 3 deletions

View File

@ -657,8 +657,5 @@ cmp.setup {
},
}
vim.opt.number = true
vim.opt.relativenumber = true
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et

View File

@ -2,4 +2,8 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
vim.opt.number = true
vim.opt.relativenumber = true
return {}