I've been using this with only minimal changes for a few weeks now, so this seems like a good place to checkpoint it.
14 lines
301 B
Lua
14 lines
301 B
Lua
vim.opt.background = 'dark'
|
|
vim.g.colors_name = 'jdkaplan-cool'
|
|
|
|
vim.o.termguicolors = true
|
|
|
|
local pkg = 'jdkaplan.cool_theme'
|
|
|
|
-- Clear the Lua cache for the theme package to force it to load every time.
|
|
package.loaded[pkg] = nil
|
|
|
|
local lush = require('lush')
|
|
local theme = require(pkg)
|
|
|
|
lush(theme)
|