From 4a91323ca7fcb234015a18a7d6a87eb821339b8d Mon Sep 17 00:00:00 2001 From: ksyasuda Date: Sat, 6 Nov 2021 16:32:02 -0700 Subject: [PATCH] update path to sudasong in zshrc and fix emc --- dotfiles/.zshrc | 3 ++- scripts/emc | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dotfiles/.zshrc b/dotfiles/.zshrc index 60ce66e..8a823c2 100644 --- a/dotfiles/.zshrc +++ b/dotfiles/.zshrc @@ -13,8 +13,9 @@ fi export ZSH="/home/sudacode/.oh-my-zsh" export PATH="$HOME/scripts:$PATH" export PATH="$HOME/Work/scripts:$PATH" +export PATH="$HOME/Work/rofi/:$PATH" export PATH="$HOME/.bin:$PATH" -export PATH="$HOME/projects/Python/get_song/src/:$PATH" +export PATH="$HOME/Projects/Python/Sudasong/src/:$PATH" export EDITOR=vim export VISUAL=vim diff --git a/scripts/emc b/scripts/emc index 4f1eda3..7b50f69 100755 --- a/scripts/emc +++ b/scripts/emc @@ -1,5 +1,5 @@ #!/usr/bin/env bash for filename in "$@"; do - emacsclient -n -e emacs -c "$@" + emacsclient -n -c "$@" done