#!/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 . >/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' alias m='make' alias mc='m clean' alias mi='m install' alias md='m develop' # grep alias grep='grep --color=auto' alias heck_toolchain_info='make -f ~/HeckBashSetup/scripts/ToolchainInfo'