10 lines
262 B
Lua
10 lines
262 B
Lua
|
-- You probably always want to set this in your vim file
|
||
|
vim.opt.background = 'dark'
|
||
|
vim.g.colors_name = 'particle'
|
||
|
|
||
|
package.loaded['particle.particle'] = nil
|
||
|
|
||
|
-- include our theme file and pass it to lush to apply
|
||
|
require('lush')(require('particle.particle'))
|
||
|
|