dotwryn/zsh/suffixes
2019-12-30 23:44:40 -07:00

15 lines
279 B
Bash

#!/bin/zsh
PYTHON="py"
CLISP="clisp lisp"
TEXT="txt md js";
WEB="css scss less html php cshtml json"
JS="ts tsx js"
C="cpp h c cs"
FILES_TO_EDIT="$PYTHON $CLISP $TEXT $WEB $JS $C";
for filetype in ${(s/ /)FILES_TO_EDIT}; do
alias -s $filetype="$EDITOR";
done;