summaryrefslogtreecommitdiff
path: root/fnl/config/colorscheme.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-03 21:22:40 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-03 21:22:40 +0200
commitda8fcbe90cd5983c0c8f1cd0cd2db8066be2f910 (patch)
treeca24917e67b6dfa987d355dc6178a3d0660e8408 /fnl/config/colorscheme.fnl
parentb587ece93c36d60bedbcab74b627929877320fc1 (diff)
feat(colorscheme): add fnl config
Diffstat (limited to 'fnl/config/colorscheme.fnl')
-rw-r--r--fnl/config/colorscheme.fnl9
1 files changed, 9 insertions, 0 deletions
diff --git a/fnl/config/colorscheme.fnl b/fnl/config/colorscheme.fnl
new file mode 100644
index 0000000..31323d7
--- /dev/null
+++ b/fnl/config/colorscheme.fnl
@@ -0,0 +1,9 @@
+;; Load neovim colorscheme.
+(module config.colorscheme
+ {autoload {util util}})
+
+(local colorscheme "no-clown-fiesta")
+
+(let [(ok? _) (pcall (.. "colorscheme " colorscheme))]
+ (when (not ok?)
+ (vim.notify (.. "colorscheme " colorscheme " not found!"))))