-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathwinb.lua
More file actions
46 lines (39 loc) · 744 Bytes
/
winb.lua
File metadata and controls
46 lines (39 loc) · 744 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
local M = {}
M.config = function()
local status_ok, bar = pcall(require, "winbar")
if not status_ok then
return
end
bar.setup {
enabled = true,
show_file_path = false,
show_symbols = true,
colors = {
path = "", -- You can customize colors like #c946fd
file_name = "",
symbols = "",
},
icons = {
file_icon_default = "",
seperator = ">",
editor_state = "●",
lock_icon = "",
},
exclude_filetype = {
"help",
"startify",
"dashboard",
"lazy",
"neogitstatus",
"NvimTree",
"Trouble",
"alpha",
"lir",
"Outline",
"spectre_panel",
"toggleterm",
"qf",
},
}
end
return M