You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

49 lines
948 B

#!/bin/bash
if [ $(uname) == "Linux" ]; then {
alias l='ls -l --color=always --time-style=+%F%t%T'
alias ll='l -a'
alias lt='l -at'
alias ltr='l -art'
} fi
if [ $(uname) == "Darwin" ]; then {
alias l='ls -GlT'
alias ll='l -a'
alias lt='l -at'
alias ltr='l -art'
#macports
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
#cmake
export PATH="/Applications/CMake.app/Contents/bin":$PATH
} fi
## PATH
#rust
export PATH="$HOME/.cargo/bin:$PATH"
#yml2
#export PATH=$PATH:$HOME/src/yml2/
#The USER scripts (my scripts) :)
export PATH=$PATH:"$HOME/HeckBashSetup/scripts"
export LANG=en_US.UTF-8
export TERM=xterm
export EDITOR=vim
export LESS='-RS -i -X'
export HISTFILESIZE=
export HISTSIZE=100000
alias sp='source $HOME/.bash_profile'
alias m='make'
alias mc='m clean'
alias mi='m install'
alias md='m develop'
# grep
alias grep='grep --color=auto'
alias toolchain_info='make -f ~/HeckBashSetup/scripts/ToolchainInfo'