diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-11-16 14:36:15 +0100 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-11-16 14:36:15 +0100 |
| commit | ab650693713ceeadf2c064b1024379e6a58a6878 (patch) | |
| tree | 62f4d6f17b86c474a7ee28b7d9de058f5d32d0fd /fnl/plugins/colorscheme.fnl | |
| parent | 0d7ffc588f1971254fb271d3d211b396230ba552 (diff) | |
Diffstat (limited to 'fnl/plugins/colorscheme.fnl')
| -rw-r--r-- | fnl/plugins/colorscheme.fnl | 12 |
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} |