summaryrefslogtreecommitdiff
path: root/fnl/config/colorscheme.fnl
diff options
context:
space:
mode:
authoraktersnurra <grydholm@kth.se>2022-04-24 01:24:31 +0200
committeraktersnurra <grydholm@kth.se>2022-04-24 01:24:31 +0200
commitee4a3a665f111d9f74e1f52bdb97368f2ef06293 (patch)
tree33973bdfec12864150ba0d9bc906cca82735fade /fnl/config/colorscheme.fnl
parent820829d49b105942ba29e108dca99cfc31128452 (diff)
fix(colorscheme): use local var
Diffstat (limited to 'fnl/config/colorscheme.fnl')
-rw-r--r--fnl/config/colorscheme.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/config/colorscheme.fnl b/fnl/config/colorscheme.fnl
index 989ee75..2cadc02 100644
--- a/fnl/config/colorscheme.fnl
+++ b/fnl/config/colorscheme.fnl
@@ -3,6 +3,6 @@
(local colorscheme :no-clown-fiesta)
-(let [(ok? _) (pcall (vim.cmd (.. "colorscheme " :no-clown-fiesta)))]
+(let [(ok? _) (pcall (vim.cmd (.. "colorscheme " colorscheme)))]
(if (not ok?)
(vim.notify (.. "colorscheme " colorscheme " not found!"))))