chore: rename lush_template.lua

This commit is contained in:
Muhammad Nauman Raza 2023-12-28 23:44:36 +00:00
parent 9336ca5b3c
commit 408430f855
Signed by: devraza
GPG key ID: 91EAD6081011574B
2 changed files with 9 additions and 21 deletions

View file

@ -1,21 +0,0 @@
-- You probably always want to set this in your vim file
vim.opt.background = 'dark'
vim.g.colors_name = 'lush_template'
-- By setting our module to nil, we clear lua's cache,
-- which means the require ahead will *always* occur.
--
-- This isn't strictly required but it can be a useful trick if you are
-- incrementally editing your config a lot and want to be sure your themes
-- changes are being picked up without restarting neovim.
--
-- Note if you're working in on your theme and have :Lushify'd the buffer,
-- your changes will be applied with our without the following line.
--
-- The performance impact of this call can be measured in the hundreds of
-- *nanoseconds* and such could be considered "production safe".
package.loaded['particle.particle'] = nil
-- include our theme file and pass it to lush to apply
require('lush')(require('particle.particle'))

9
colors/particle.lua Normal file
View file

@ -0,0 +1,9 @@
-- 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'))