From 7e06ed6ff9b2e19301bea7ca673436c40f704e1a Mon Sep 17 00:00:00 2001 From: Wryn Wagner Date: Thu, 16 Sep 2021 15:33:46 -0600 Subject: [PATCH] decided i hate suffixes --- zsh/suffixes | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 zsh/suffixes 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;