tangled
alpha
login
or
join now
tjh.dev
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
helix: add config
tjh.dev
9 months ago
a74038bf
1959f648
verified
This commit was signed with the committer's
known signature
.
tjh.dev
SSH Key Fingerprint:
SHA256:RhG+o7Aj/xulPOqGBYDE7G2RZdwS1M7RWqL3oo9BYCY=
+139
2 changed files
expand all
collapse all
unified
split
.config
helix
config.toml
themes
gruvbox-material-dark-hard.toml
+17
.config/helix/config.toml
···
1
1
+
theme = "gruvbox-material-dark-hard"
2
2
+
3
3
+
[editor]
4
4
+
true-color = true
5
5
+
bufferline = "multiple"
6
6
+
end-of-line-diagnostics = "hint"
7
7
+
8
8
+
[editor.statusline]
9
9
+
center = ["version-control"]
10
10
+
right = ["diagnostics", "selections", "register", "position", "position-percentage", "file-encoding"]
11
11
+
12
12
+
[editor.inline-diagnostics]
13
13
+
cursor-line = "hint"
14
14
+
other-lines = "error"
15
15
+
16
16
+
[editor.lsp]
17
17
+
display-progress-messages = true
+122
.config/helix/themes/gruvbox-material-dark-hard.toml
···
1
1
+
"type" = "yellow"
2
2
+
"constant" = "purple"
3
3
+
"constant.numeric" = "purple"
4
4
+
"constant.character.escape" = "orange"
5
5
+
"string" = "green"
6
6
+
"string.regexp" = "blue"
7
7
+
"comment" = "grey0"
8
8
+
"variable" = "fg0"
9
9
+
"variable.builtin" = "blue"
10
10
+
"variable.parameter" = "fg0"
11
11
+
"variable.other.member" = "fg0"
12
12
+
"label" = "aqua"
13
13
+
"punctuation" = "grey2"
14
14
+
"punctuation.delimiter" = "grey2"
15
15
+
"punctuation.bracket" = "fg0"
16
16
+
"keyword" = "red"
17
17
+
"keyword.directive" = "aqua"
18
18
+
"operator" = "orange"
19
19
+
"function" = "green"
20
20
+
"function.builtin" = "blue"
21
21
+
"function.macro" = "aqua"
22
22
+
"tag" = "yellow"
23
23
+
"namespace" = "aqua"
24
24
+
"attribute" = "aqua"
25
25
+
"constructor" = "yellow"
26
26
+
"module" = "blue"
27
27
+
"special" = "orange"
28
28
+
29
29
+
"markup.heading.marker" = "grey2"
30
30
+
"markup.heading.1" = { fg = "red", modifiers = ["bold"] }
31
31
+
"markup.heading.2" = { fg = "orange", modifiers = ["bold"] }
32
32
+
"markup.heading.3" = { fg = "yellow", modifiers = ["bold"] }
33
33
+
"markup.heading.4" = { fg = "green", modifiers = ["bold"] }
34
34
+
"markup.heading.5" = { fg = "blue", modifiers = ["bold"] }
35
35
+
"markup.heading.6" = { fg = "fg0", modifiers = ["bold"] }
36
36
+
"markup.list" = "red"
37
37
+
"markup.bold" = { modifiers = ["bold"] }
38
38
+
"markup.italic" = { modifiers = ["italic"] }
39
39
+
"markup.link.url" = { fg = "blue", modifiers = ["underlined"] }
40
40
+
"markup.link.text" = "purple"
41
41
+
"markup.quote" = "grey2"
42
42
+
"markup.raw" = "green"
43
43
+
44
44
+
"diff.plus" = "green"
45
45
+
"diff.delta" = "orange"
46
46
+
"diff.minus" = "red"
47
47
+
48
48
+
"ui.background" = { bg = "bg0" }
49
49
+
"ui.background.separator" = "grey0"
50
50
+
"ui.cursor" = { fg = "bg0", bg = "fg0" }
51
51
+
"ui.cursor.match" = { fg = "orange", bg = "bg_visual_yellow" }
52
52
+
"ui.cursor.insert" = { fg = "bg0", bg = "grey2" }
53
53
+
"ui.cursor.select" = { fg = "bg0", bg = "blue" }
54
54
+
"ui.cursorline.primary" = { bg = "bg1" }
55
55
+
"ui.cursorline.secondary" = { bg = "bg1" }
56
56
+
"ui.selection" = { bg = "bg3" }
57
57
+
"ui.linenr" = "grey0"
58
58
+
"ui.linenr.selected" = "fg0"
59
59
+
"ui.statusline" = { fg = "fg0", bg = "bg3" }
60
60
+
"ui.statusline.inactive" = { fg = "grey0", bg = "bg1" }
61
61
+
"ui.statusline.normal" = { fg = "bg0", bg = "fg0", modifiers = ["bold"] }
62
62
+
"ui.statusline.insert" = { fg = "bg0", bg = "yellow", modifiers = ["bold"] }
63
63
+
"ui.statusline.select" = { fg = "bg0", bg = "blue", modifiers = ["bold"] }
64
64
+
"ui.bufferline" = { fg = "grey0", bg = "bg1" }
65
65
+
"ui.bufferline.active" = { fg = "fg0", bg = "bg3", modifiers = ["bold"] }
66
66
+
"ui.popup" = { fg = "grey2", bg = "bg2" }
67
67
+
"ui.window" = { fg = "grey0", bg = "bg0" }
68
68
+
"ui.help" = { fg = "fg0", bg = "bg2" }
69
69
+
"ui.text" = "fg0"
70
70
+
"ui.text.focus" = "fg0"
71
71
+
"ui.menu" = { fg = "fg0", bg = "bg3" }
72
72
+
"ui.menu.selected" = { fg = "bg0", bg = "blue", modifiers = ["bold"] }
73
73
+
"ui.virtual.whitespace" = { fg = "bg4" }
74
74
+
"ui.virtual.indent-guide" = { fg = "bg4" }
75
75
+
"ui.virtual.ruler" = { bg = "bg3" }
76
76
+
77
77
+
"hint" = "blue"
78
78
+
"info" = "aqua"
79
79
+
"warning" = "yellow"
80
80
+
"error" = "red"
81
81
+
"diagnostic" = { underline = { style = "curl" } }
82
82
+
"diagnostic.hint" = { underline = { color = "blue", style = "dotted" } }
83
83
+
"diagnostic.info" = { underline = { color = "aqua", style = "dotted" } }
84
84
+
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
85
85
+
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
86
86
+
87
87
+
[palette]
88
88
+
89
89
+
bg0 = "#1d2021"
90
90
+
bg1 = "#282828"
91
91
+
bg2 = "#282828"
92
92
+
bg3 = "#3c3836"
93
93
+
bg4 = "#3c3836"
94
94
+
bg5 = "#504945"
95
95
+
bg_statusline1 = "#282828"
96
96
+
bg_statusline2 = "#32302f"
97
97
+
bg_statusline3 = "#504945"
98
98
+
bg_diff_green = "#32361a"
99
99
+
bg_visual_green = "#333e34"
100
100
+
bg_diff_red = "#3c1f1e"
101
101
+
bg_visual_red = "#442e2d"
102
102
+
bg_diff_blue = "#0d3138"
103
103
+
bg_visual_blue = "#2e3b3b"
104
104
+
bg_visual_yellow = "#473c29"
105
105
+
bg_current_word = "#32302f"
106
106
+
107
107
+
fg0 = "#d4be98"
108
108
+
fg1 = "#ddc7a1"
109
109
+
red = "#ea6962"
110
110
+
orange = "#e78a4e"
111
111
+
yellow = "#d8a657"
112
112
+
green = "#a9b665"
113
113
+
aqua = "#89b482"
114
114
+
blue = "#7daea3"
115
115
+
purple = "#d3869b"
116
116
+
bg_red = "#ea6962"
117
117
+
bg_green = "#a9b665"
118
118
+
bg_yellow = "#d8a657"
119
119
+
120
120
+
grey0 = "#7c6f64"
121
121
+
grey1 = "#928374"
122
122
+
grey2 = "#a89984"