summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-07-16 15:57:24 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-07-16 15:57:24 +0200
commit8941b86fbc953a62e85fc15444c00f5eb2b3e6f7 (patch)
tree7a0d75e80620efd959da58bfb403060150463485
parent49c5b4b1aa32bfec980bdd2de26dfccbc44d7815 (diff)
Remove bloat from colorscheme loading
-rw-r--r--fnl/config/colorscheme.fnl5
1 files changed, 1 insertions, 4 deletions
diff --git a/fnl/config/colorscheme.fnl b/fnl/config/colorscheme.fnl
index fd489a2..d9eee52 100644
--- a/fnl/config/colorscheme.fnl
+++ b/fnl/config/colorscheme.fnl
@@ -3,7 +3,4 @@
(local colorscheme :no-clown-fiesta)
-(let [(ok? _) (pcall vim.cmd (.. "colorscheme " colorscheme))]
- (if ok?
- nil
- (vim.notify (.. "colorscheme " colorscheme " not found!"))))
+(pcall vim.cmd (.. "colorscheme " colorscheme))