Created
December 8, 2015 03:59
-
-
Save mike-anderson/b37d3338a980d2178a3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#some useful path aliases | |
set -x DEV_TOOLS "$HOME/Dev/tools" | |
#place usr/local/bin in the front | |
set -x PATH "/usr/local/bin" $PATH | |
#imports | |
. ~/.autojump/etc/profile.d/autojump.fish | |
set -x PATH $PATH "$DEV_TOOLS/depot_tools" | |
set -x PATH $PATH "$DEV_TOOLS/../harpDoc/bin" | |
set -x PATH $PATH "$HOME/Dev/omnetpp-4.4/bin" | |
set -x PATH $PATH "$DEV_TOOLS" | |
set -x PATH $PATH "$HOME/.composer/vendor/bin" | |
#set the greeting message to nothing (might change this later) | |
set fish_greeting "" | |
#convenience functions | |
#quick clear | |
function cl | |
clear | |
end | |
#advanced ls | |
function ll | |
ls -lh $argv | |
end | |
function lla | |
ls -lha $argv | |
end | |
#cd and ls | |
function cdl | |
cd $argv | |
ls | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment