blob: 5189724307eaf520eca717e3a96cc73720f223d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
(module config.minibar {autoload {: util}})
(def- opts {:ignore-filetypes [:help
:startify
:dashboard
:packer
:neogitstatus
:NvimTree
:Trouble
:alpha
:lir
:org
:Outline
:NeogitStatus
:NeogitCommitMessage
:NeogitNotification
:NeogitCommitView
:spectre_panel]
:events [:CursorMoved
:DirChanged
:BufWinEnter
:BufFilePost
:InsertEnter
:BufWritePost
]})
(util.use-config :minibar opts)
|