diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-09-24 14:02:12 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-09-24 14:02:12 +0200 |
commit | 1167e48eed8114fed8c81ded84864fb2caa53893 (patch) | |
tree | ba518d96c15f9931bee00f5bc94aef97031f2b77 /fnl/plugins/editor/colorscheme.fnl | |
parent | 8ad2f8c9afb308e7a8a1133f578e3352442f770a (diff) |
Remove opts from colorscheme and window-picker
Diffstat (limited to 'fnl/plugins/editor/colorscheme.fnl')
-rw-r--r-- | fnl/plugins/editor/colorscheme.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/plugins/editor/colorscheme.fnl b/fnl/plugins/editor/colorscheme.fnl index d3e62cb..85c83fd 100644 --- a/fnl/plugins/editor/colorscheme.fnl +++ b/fnl/plugins/editor/colorscheme.fnl @@ -2,9 +2,9 @@ (local opts {:styles {:type {:bold true} :lsp {:underline false}}}) -(lambda config [_ opts] +(fn config [] (let [plugin (require :no-clown-fiesta)] (plugin.setup opts) (plugin.load))) -{1 :aktersnurra/no-clown-fiesta.nvim : opts : config} +{1 :aktersnurra/no-clown-fiesta.nvim : config} |