12 lines
264 B
Lua
12 lines
264 B
Lua
-- General global settings for neovim
|
|
|
|
local opt = vim.opt -- basically the same as set
|
|
|
|
opt.relativenumber = true -- might make this false if I hate it after using it
|
|
opt.number = true
|
|
vim.cmd([[colorscheme gruvbox]])
|
|
|
|
opt.ignorecase = true
|
|
opt.smartcase = true
|
|
|