diff options
author | aktersnurra <grydholm@kth.se> | 2022-04-24 01:24:31 +0200 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2022-04-24 01:24:31 +0200 |
commit | ee4a3a665f111d9f74e1f52bdb97368f2ef06293 (patch) | |
tree | 33973bdfec12864150ba0d9bc906cca82735fade /fnl | |
parent | 820829d49b105942ba29e108dca99cfc31128452 (diff) |
fix(colorscheme): use local var
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/config/colorscheme.fnl | 2 |
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!")))) |