diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-16 15:57:24 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-16 15:57:24 +0200 |
commit | 8941b86fbc953a62e85fc15444c00f5eb2b3e6f7 (patch) | |
tree | 7a0d75e80620efd959da58bfb403060150463485 | |
parent | 49c5b4b1aa32bfec980bdd2de26dfccbc44d7815 (diff) |
Remove bloat from colorscheme loading
-rw-r--r-- | fnl/config/colorscheme.fnl | 5 |
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)) |