summaryrefslogtreecommitdiff
path: root/fnl/config/colorscheme.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-11 18:52:34 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-11 18:52:34 +0200
commitb74c9dd22e632bbe720587db92966c4d6811b766 (patch)
treef68e5bb862fd5a800f86852e535d29984f461cb3 /fnl/config/colorscheme.fnl
parent274648011686b1c822e63b03bdcc6f2ce8e9b41e (diff)
style: format with fnlfmt
Diffstat (limited to 'fnl/config/colorscheme.fnl')
-rw-r--r--fnl/config/colorscheme.fnl9
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!"))))