Major Palette Changes

This commit is contained in:
Eric Xiao 2022-12-07 16:16:04 -08:00
commit 7fbba55cb2
6 changed files with 233 additions and 234 deletions

View file

@ -1,4 +1,4 @@
local util = require('rose-pine.util')
local util = require("rose-pine.util")
local M = {}
@ -6,9 +6,9 @@ function M.colorscheme()
if vim.g.colors_name then vim.cmd('hi clear') end
vim.opt.termguicolors = true
vim.g.colors_name = 'rose-pine'
vim.g.colors_name = "rose-pine"
local theme = require('rose-pine.theme').get()
local theme = require("rose-pine.theme").get_theme()
-- Set theme highlights
for group, color in pairs(theme) do util.highlight(group, color) end