diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-07 22:32:53 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-07 22:32:53 +0200 |
commit | 71d538630b226da37e4ef21c5a84d6fad5f55421 (patch) | |
tree | 5f87a9c1194a556d12ffca79ea98a08d76af548e /fnl/config/bufferline.fnl | |
parent | fa9a5c6b80b5b0ffdcddc4b1d1c6cfe887d0bb04 (diff) |
fix(load plugin): correct loading err
Diffstat (limited to 'fnl/config/bufferline.fnl')
-rw-r--r-- | fnl/config/bufferline.fnl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fnl/config/bufferline.fnl b/fnl/config/bufferline.fnl index 0b89170..fac26a4 100644 --- a/fnl/config/bufferline.fnl +++ b/fnl/config/bufferline.fnl @@ -113,6 +113,5 @@ :guifg { :attribute "fg" :highlight "LspDiagnosticsDefaultHint" } :guibg default-bg-normal}}) -(let [(ok? bufferline) util.load-plugin :bufferline] - (when ok? - (bufferline.setup {:options options :highlights highlights}))) +(let [bufferline (util.load-plugin :bufferline)] + (bufferline.setup {:options options :highlights highlights})) |