Files
dotfiles/fish/config.fish
2015-08-21 02:14:05 -07:00

33 lines
446 B
Fish

# ============
# Basics, etc…
# ============
# Default browser
set -g -x EDITOR "emacsclient"
# Add ~/bin to PATH
set -g -x PATH ~/bin $PATH
# =========
# Functions
# =========
function ec
emacsclient -n $argv
end
# IP addresses
function ip
curl icanhazip.com
end
# edit config.fish (this file)
function cf
ec ~/.config/fish/config.fish
end
# reload your Fish config
function src
source ~/.config/fish/config.fish; and clear
end