Update 2026-02-09

This commit is contained in:
2026-02-09 22:52:34 +02:00
parent 5324f54618
commit 13c0558017
50 changed files with 4171 additions and 117 deletions

View File

@@ -0,0 +1,10 @@
function open_nvim_here --description "Open nvim in cwd"
# Run nvim ($EDITOR) on the current dir
command $EDITOR .
# After returning, force fish to resync its vi mode + cursor
commandline -f vi-default 2>/dev/null
commandline -f vi-insert 2>/dev/null
printf '\e[5 q'
commandline -f repaint 2>/dev/null
end