summaryrefslogtreecommitdiff
path: root/fnl/config/colorscheme.fnl
blob: 83175c25e7583a721f675c1e5d4f0d6051fcbb07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;; Load neovim colorscheme.

(local colorscheme :no-clown-fiesta)

(local opts {:styles {:type {:bold true}}})

(fn setup []
  (let [plugin (require colorscheme)]
    (plugin.setup opts)
    (vim.cmd (.. "colorscheme " colorscheme))))

{1 :aktersnurra/no-clown-fiesta.nvim
 :lazy false
 :priority 1000
 :config (fn []
           (setup))}