blob: 6d3cce775590d97882413955377951e8cd87a4c8 (
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
|
(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]}))
|