Watch
1
0
Fork
You've already forked dotfiles
0

Compare commits

..
Author SHA1 Message Date
93a757aba7 helix: Add keys for reflow 2026-08-21 03:49:47 -04:00
5dc446d1a6 helix: Auto-format Python 2026-08-21 03:49:14 -04:00
f6fc7a1987 bin: screencast 2026-08-21 03:49:01 -04:00
4 changed files with 18 additions and 0 deletions

11
bin/screencast Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -euo pipefail
ts="$(date "+%Y-%m-%d_%H-%M-%S")"
f="${HOME}/videos/screencasts/${ts}.mkv"
wf-recorder -g "$(slurp)" -f "$f"
echo "$f" >&2
echo "$f"

View file

@ -1,5 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail
ts="$(date "+%Y-%m-%d_%H-%M-%S")"
f="${HOME}/images/screenshots/${ts}.png"

View file

@ -71,5 +71,6 @@ tabpad = ""
"C-l" = [":config-reload", ":redraw"]
[keys.normal.space.t]
"q" = ":reflow"
"w" = ":toggle whitespace.render all none"
"W" = ":toggle soft-wrap.enable"

View file

@ -27,3 +27,7 @@ command = "tinymist"
[language-server.tinymist.config.preview]
background = { enabled = true }
refresh = "onSave"
[[language]]
name = "python"
auto-format = true