Initial checkin

This commit is contained in:
2015-08-21 02:14:05 -07:00
commit d7ebb8e0d2
15 changed files with 395 additions and 0 deletions

32
fish/config.fish Normal file
View File

@@ -0,0 +1,32 @@
# ============
# 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