summaryrefslogtreecommitdiff
path: root/fnl/plugins/colorscheme.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/plugins/colorscheme.fnl')
-rw-r--r--fnl/plugins/colorscheme.fnl12
1 files changed, 8 insertions, 4 deletions
diff --git a/fnl/plugins/colorscheme.fnl b/fnl/plugins/colorscheme.fnl
index 2d913ca..96ad95c 100644
--- a/fnl/plugins/colorscheme.fnl
+++ b/fnl/plugins/colorscheme.fnl
@@ -1,12 +1,16 @@
;; Load neovim colorscheme.
-(local opts {:styles {:type {:bold true}
+(local opts {:theme :dark
+ :styles {:type {:bold true}
:lsp {:underline true}
:match_paren {:underline true}}})
(λ config []
(let [plugin (require :no-clown-fiesta)]
- (plugin.setup opts)
- (plugin.load)))
+ (plugin.load opts)))
-{1 :aktersnurra/no-clown-fiesta.nvim :lazy false :priority 1000 : config}
+{1 :aktersnurra/no-clown-fiesta.nvim
+ :lazy false
+ :priority 1000
+ : config
+ :dev true}