summaryrefslogtreecommitdiff
path: root/fnl/plugins/editor/colorscheme.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-09-24 01:12:42 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-09-24 01:12:42 +0200
commit8ad2f8c9afb308e7a8a1133f578e3352442f770a (patch)
treea7a05ed7c472f186d6380dd918e2318d6d951330 /fnl/plugins/editor/colorscheme.fnl
parentfd69ec549594d53b9503212d93a9a44f10eef478 (diff)
Restructure plugin configs
Diffstat (limited to 'fnl/plugins/editor/colorscheme.fnl')
-rw-r--r--fnl/plugins/editor/colorscheme.fnl14
1 files changed, 8 insertions, 6 deletions
diff --git a/fnl/plugins/editor/colorscheme.fnl b/fnl/plugins/editor/colorscheme.fnl
index 146c62f..d3e62cb 100644
--- a/fnl/plugins/editor/colorscheme.fnl
+++ b/fnl/plugins/editor/colorscheme.fnl
@@ -1,8 +1,10 @@
;; Load neovim colorscheme.
-{1 :aktersnurra/no-clown-fiesta.nvim
- :opts {:styles {:type {:bold true} :lsp {:underline false}}}
- :config (lambda [_ opts]
- (let [plugin (require :no-clown-fiesta)]
- (plugin.setup opts)
- (plugin.load)))}
+(local opts {:styles {:type {:bold true} :lsp {:underline false}}})
+
+(lambda config [_ opts]
+ (let [plugin (require :no-clown-fiesta)]
+ (plugin.setup opts)
+ (plugin.load)))
+
+{1 :aktersnurra/no-clown-fiesta.nvim : opts : config}