diff options
-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!")))) |