This is the first commit that actually adds files to the repo. Yes it's a bad commit but now the major features are here
8 lines
122 B
Lua
8 lines
122 B
Lua
local ok = pcall(require, "gruvbox")
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
vim.o.background = "dark"
|
|
vim.cmd.colorscheme('gruvbox')
|