system-from-scratch/roles/neovim/files/lua/theme.lua

6 lines
142 B
Lua
Raw Normal View History

2024-04-26 23:30:17 +05:00
local status, gruvbox = pcall(require, "gruvbox")
if (not status) then return end
vim.o.background = "dark"
vim.cmd([[colorscheme gruvbox]])