From 408430f85585a765b320a6088b688235716eb369 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Thu, 28 Dec 2023 23:44:36 +0000 Subject: [PATCH] chore: rename lush_template.lua --- colors/lush_template.lua | 21 --------------------- colors/particle.lua | 9 +++++++++ 2 files changed, 9 insertions(+), 21 deletions(-) delete mode 100644 colors/lush_template.lua create mode 100644 colors/particle.lua diff --git a/colors/lush_template.lua b/colors/lush_template.lua deleted file mode 100644 index 9f8b576..0000000 --- a/colors/lush_template.lua +++ /dev/null @@ -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')) - diff --git a/colors/particle.lua b/colors/particle.lua new file mode 100644 index 0000000..19c1ce8 --- /dev/null +++ b/colors/particle.lua @@ -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')) +