29 lines
650 B
Bash
29 lines
650 B
Bash
#!/bin/zsh
|
|
|
|
# export MANPATH="/usr/local/man:$MANPATH"
|
|
|
|
# You may need to manually set your language environment
|
|
# export LANG=en_US.UTF-8
|
|
|
|
# Preferred editor for local and remote sessions
|
|
# if [[ -n $SSH_CONNECTION ]]; then
|
|
# export EDITOR='code'
|
|
# else
|
|
# export EDITOR='code'
|
|
# fi
|
|
#--- EMacs as Code (for termux only) ---#
|
|
export PATH="$PATH:$HOME/.config/doom/bin"
|
|
alias code='emacs'
|
|
export EDITOR='code'
|
|
|
|
|
|
# Compilation flags
|
|
# export ARCHFLAGS="-arch x86_64"
|
|
|
|
# System Related Path Variables
|
|
export profile="$HOME/.zshrc"
|
|
export config="$HOME/.config"
|
|
# Workspaces
|
|
export ws="$HOME/documents/worksapce"
|
|
export tests="$HOME/documents/__test"
|