Skip to content

Instantly share code, notes, and snippets.

@mike-anderson
Created December 8, 2015 03:59
Show Gist options
  • Save mike-anderson/b37d3338a980d2178a3d to your computer and use it in GitHub Desktop.
Save mike-anderson/b37d3338a980d2178a3d to your computer and use it in GitHub Desktop.
#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