refactor: rename dark_colors to colors

This commit is contained in:
fiplox 2023-02-10 08:17:22 +01:00
parent 30c18041a3
commit 04753e6b08
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
local dark_colors = require 'neogruber.colors.neogruber'
local colors = require 'neogruber.colors.neogruber'
local function load()
local theme = require('neogruber.config').options.theme
@ -9,7 +9,7 @@ local function load()
theme = vim.o.background
end
local base_colors = dark_colors
local base_colors = colors
return vim.tbl_deep_extend('force', base_colors, require('neogruber.config').options.custom_colors)
end