diff options
Diffstat (limited to 'fnl/config/colorscheme.fnl')
-rw-r--r-- | fnl/config/colorscheme.fnl | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/fnl/config/colorscheme.fnl b/fnl/config/colorscheme.fnl index 828daf1..989ee75 100644 --- a/fnl/config/colorscheme.fnl +++ b/fnl/config/colorscheme.fnl @@ -1,9 +1,8 @@ ;; Load neovim colorscheme. -(module config.colorscheme - {autoload {util util}}) +(module config.colorscheme {autoload {util util}}) -(local colorscheme "no-clown-fiesta") +(local colorscheme :no-clown-fiesta) -(let [(ok? _) (pcall (vim.cmd (.. "colorscheme " "no-clown-fiesta")))] +(let [(ok? _) (pcall (vim.cmd (.. "colorscheme " :no-clown-fiesta)))] (if (not ok?) - (vim.notify (.. "colorscheme " colorscheme " not found!")))) + (vim.notify (.. "colorscheme " colorscheme " not found!")))) |