diff options
Diffstat (limited to 'fnl/config/minibar.fnl')
-rw-r--r-- | fnl/config/minibar.fnl | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/fnl/config/minibar.fnl b/fnl/config/minibar.fnl index 6d3cce7..7a6945a 100644 --- a/fnl/config/minibar.fnl +++ b/fnl/config/minibar.fnl @@ -1,25 +1,26 @@ (module config.minibar {autoload {: util}}) -(let [minibar (util.load-plugin :minibar)] - (minibar.setup {:ignore-filetypes [:help - :startify - :dashboard - :packer - :neogitstatus - :NvimTree - :Trouble - :alpha - :lir - :Outline - :NeogitStatus - :NeogitCommitMessage - :NeogitNotification - :NeogitCommitView - :spectre_panel] - :events [:CursorMoved - :CursorHold - :BufWinEnter - :BufFilePost - :InsertEnter - :BufWritePost - :TabClosed]})) +(def- opts {:ignore-filetypes [:help + :startify + :dashboard + :packer + :neogitstatus + :NvimTree + :Trouble + :alpha + :lir + :Outline + :NeogitStatus + :NeogitCommitMessage + :NeogitNotification + :NeogitCommitView + :spectre_panel] + :events [:CursorMoved + :CursorHold + :BufWinEnter + :BufFilePost + :InsertEnter + :BufWritePost + :TabClosed]}) + +(util.use-config :minibar opts) |