diff options
author | aktersnurra <gustaf.rydholm@gmail.com> | 2022-10-29 18:19:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-29 18:19:38 +0200 |
commit | 2951af7bbd839ebef25e33f8bd01bd5c501f76c8 (patch) | |
tree | f1829cc7af1fc0c5900b23055d12bb0446962cfb /colors/no-clown-fiesta.lua | |
parent | 3234b296d7f70cc78ac37a51fc3cff28e7871812 (diff) |
Update how options and colorscheme is set (#12)
* Update loading of colorscheme
* Fix typo
* Fix setting of style
* Fix highlighting
* Unpack style
* Add empty table if props are nil
* Fix concat of tables
* Fix typo
* Update settings
* Add call set in settings
* Add deep extend
* Remove style field
* Update README
BREAKING CHANGE: updates how the colorscheme is set and the structure of the options table
Diffstat (limited to 'colors/no-clown-fiesta.lua')
-rw-r--r-- | colors/no-clown-fiesta.lua | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/colors/no-clown-fiesta.lua b/colors/no-clown-fiesta.lua index 1678131..3a7818d 100644 --- a/colors/no-clown-fiesta.lua +++ b/colors/no-clown-fiesta.lua @@ -1,7 +1 @@ -for k in pairs(package.loaded) do - if k:match ".*no-clown-fiesta.*" then - package.loaded[k] = nil - end -end - -require "no-clown-fiesta" +require("no-clown-fiesta").load() |