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.
46 lines
872 B
46 lines
872 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"
|
|
|
|
# clion launcher
|
|
function heck_clion {
|
|
/Applications/CLion.app/Contents/MacOS/clion . >/dev/null 2>&1 &
|
|
}
|
|
|
|
#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'
|
|
|
|
# grep
|
|
alias grep='grep --color=auto'
|
|
|
|
|