diff options
Diffstat (limited to 'fnl/config')
-rw-r--r-- | fnl/config/colorscheme.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/config/colorscheme.fnl b/fnl/config/colorscheme.fnl index 31323d7..828daf1 100644 --- a/fnl/config/colorscheme.fnl +++ b/fnl/config/colorscheme.fnl @@ -4,6 +4,6 @@ (local colorscheme "no-clown-fiesta") -(let [(ok? _) (pcall (.. "colorscheme " colorscheme))] - (when (not ok?) +(let [(ok? _) (pcall (vim.cmd (.. "colorscheme " "no-clown-fiesta")))] + (if (not ok?) (vim.notify (.. "colorscheme " colorscheme " not found!")))) |