tangled
alpha
login
or
join now
hyperreal.bsky.moonshadow.dev
/
dotfiles
0
fork
atom
My user config prefs
0
fork
atom
overview
issues
pulls
pipelines
~newsboat, ~zshrc, +helix
hyperreal.bsky.moonshadow.dev
4 months ago
9d3db241
8869b8a1
+41
-1
3 changed files
expand all
collapse all
unified
split
config
helix
config.toml
newsboat
config
zsh
.zshrc
+30
config/helix/config.toml
···
1
1
+
theme = "catppuccin_mocha"
2
2
+
3
3
+
[editor]
4
4
+
line-number = "relative"
5
5
+
mouse = true
6
6
+
auto-completion = true
7
7
+
path-completion = true
8
8
+
auto-format = true
9
9
+
preview-completion-insert = true
10
10
+
auto-info = true
11
11
+
bufferline = "multiple"
12
12
+
color-modes = true
13
13
+
popup-border = "all"
14
14
+
indent-heuristic = "hybrid"
15
15
+
16
16
+
[editor.cursor-shape]
17
17
+
insert = "bar"
18
18
+
normal = "block"
19
19
+
select = "underline"
20
20
+
21
21
+
[editor.indent-guides]
22
22
+
render = true
23
23
+
24
24
+
[editor.statusline]
25
25
+
left = ["mode", "position", "position-percentage", "spinner", "version-control", "file-name", "file-modification-indicator", "read-only-indicator"]
26
26
+
right = ["diagnostics", "selections", "file-type"]
27
27
+
mode.normal = "NORMAL"
28
28
+
mode.insert = "INSERT"
29
29
+
mode.select = "SELECT"
30
30
+
+1
-1
config/newsboat/config
···
11
11
include ~/.config/newsboat/dark
12
12
miniflux-flag-star "b"
13
13
miniflux-login "hyperreal"
14
14
-
miniflux-passwordeval "pass miniflux"
14
14
+
miniflux-passwordeval "kwallet-query -r miniflux-password kdewallet"
15
15
miniflux-url "https://mf.vern.cc"
16
16
refresh-on-startup yes
17
17
show-read-articles no
+10
zsh/.zshrc
···
202
202
bindkey '^[m' split-man-widget
203
203
fi
204
204
205
205
+
## keybind for convenient viewing of definitions
206
206
+
if test -x "${HOME}/bin/split_dict"; then
207
207
+
split-dict-widget() {
208
208
+
"${HOME}/bin/split_dict"
209
209
+
}
210
210
+
zle -N split-dict-widget
211
211
+
212
212
+
bindkey '^[d' split-dict-widget
213
213
+
fi
214
214
+
205
215
## gumssh
206
216
if test -x "$(command -v gumssh)"; then
207
217
bindkey -s '^[s' 'gumssh^M'