diff --git a/zsh/suffixes b/zsh/suffixes deleted file mode 100644 index 4383f95..0000000 --- a/zsh/suffixes +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/zsh - -CLISP="clisp lisp" - TEXT="txt md"; - WEB="css scss less html php cshtml json" - JS="ts tsx js" - C="cpp h c cs" - -FILES_TO_EDIT="$CLISP $TEXT $WEB $C"; - -for filetype in ${(s/ /)FILES_TO_EDIT}; do - alias -s $filetype="$EDITOR"; -done;