summaryrefslogtreecommitdiffstats
path: root/powerline/config_files/themes/vim/tabline.json
blob: 1e3130ecc1630f88d7f2d25d958bf7bf2f0ac014 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
	"default_module": "powerline.segments.vim",
	"segments": {
		"left": [
			{
				"type": "segment_list",
				"function": "powerline.listers.vim.tablister",
				"exclude_function": "single_tab",
				"segments": [
					{
						"function": "tab"
					},
					{
						"function": "tabnr",
						"after": " ",
						"priority": 5
					},
					{
						"function": "file_directory",
						"priority": 40
					},
					{
						"function": "file_name",
						"args": {
							"display_no_file": true
						},
						"priority": 10
					},
					{
						"function": "tab_modified_indicator",
						"priority": 5
					}
				]
			},
			{
				"function": "tab",
				"args": {
					"end": true
				}
			},
			{
				"type": "segment_list",
				"function": "powerline.listers.vim.bufferlister",
				"include_function": "single_tab",
				"segments": [
					{
						"function": "bufnr",
						"after": " ",
						"priority": 5
					},
					{
						"function": "file_directory",
						"priority": 40
					},
					{
						"function": "file_name",
						"args": {
							"display_no_file": true
						},
						"priority": 10
					},
					{
						"function": "modified_indicator",
						"priority": 5
					}
				]
			},
			{
				"type": "string",
				"highlight_groups": ["tab:background"],
				"draw_soft_divider": false,
				"draw_hard_divider": false,
				"width": "auto"
			}
		],
		"right": [
			{
				"type": "string",
				"contents": "Bufs",
				"name": "single_tab",
				"highlight_groups": ["single_tab"],
				"include_function": "single_tab"
			},
			{
				"type": "string",
				"contents": "Tabs",
				"name": "many_tabs",
				"highlight_groups": ["many_tabs"],
				"exclude_function": "single_tab"
			}
		]
	}
}