diff options
author | kylo252 <[email protected]> | 2022-01-17 13:13:34 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-01-17 13:13:34 +0100 |
commit | 61caf62943d04b6bded6325d6d0fa4e7fbde343f (patch) | |
tree | b7d0d61eba43d7bcc510ce32b9bffd128b289f41 /utils/lush-template/colors | |
parent | 626343c2de0599d1129e1e6b70d62aacc56ab000 (diff) |
refactor: remove unused outdated files (#2184)
Diffstat (limited to 'utils/lush-template/colors')
-rw-r--r-- | utils/lush-template/colors/lush_template.vim | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/utils/lush-template/colors/lush_template.vim b/utils/lush-template/colors/lush_template.vim deleted file mode 100644 index c411c149..00000000 --- a/utils/lush-template/colors/lush_template.vim +++ /dev/null @@ -1,21 +0,0 @@ -" You probably always want to set this in your vim file -set background=dark -let 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". -lua package.loaded['lush_theme.lush_template'] = nil - -" include our theme file and pass it to lush to apply -lua require('lush')(require('lush_theme.lush_template')) - |