mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00:00
* use helix instead of hx in omarchy-launch-editor fixes #1739 * add both hx and helix --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
11 lines
194 B
Bash
Executable File
11 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
|
|
case "${EDITOR:-nvim}" in
|
|
nvim | vim | nano | micro | hx | helix)
|
|
exec setsid uwsm-app -- "$TERMINAL" -e "$EDITOR" "$@"
|
|
;;
|
|
*)
|
|
exec setsid uwsm-app -- "$EDITOR" "$@"
|
|
;;
|
|
esac
|