summaryrefslogtreecommitdiffstats
path: root/after/plugin/jabs.lua
blob: 123de41dfcff4266490920aff695c785e9133d5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
local status_ok, jabs = pcall(require, "jabs")
if not status_ok then
	return
end

jabs.setup {
  offset = { bottom = 2, right = 2 },

  symbols = {
    current = "@",
    split = "|",
    alternate = "*",
    hidden = "\\",
    locked = "=",
    ro = "=",
    edited = "+",
    terminal = ">_",
    default_file = "~",
    terminal_symbol = ">_",
  },

  use_devicons = false,
}