-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.fish
65 lines (56 loc) · 1.82 KB
/
config.fish
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
set -g -x PATH /usr/local/bin $PATH
set -g -x fish_greeting 'Release every zig for great justice!'
cal
date
# Ruby
export BUNDLER_EDITOR=code
status --is-interactive; and source (rbenv init -|psub)
# Go
export GOPATH=/Users/michael/Developer/GoWorkspace/
set -g -x PATH $GOPATH/bin $PATH
# Rust
set -g -x PATH $HOME/.cargo/bin $PATH
#Groovy
export GROOVY_HOME=/usr/local/opt/groovy/libexec
#Pokemon Terminal
set -g -x PATH $HOME/.Pokemon-Terminal $PATH
pokemon -r kanto --dark
#Tiny Care Terminal
export TTC_BOTS=magicrealismbot,tinycarebot,selfcare_bot
export TTC_WEATHER=Tampa
export TTC_CELSIUS=false
export TTC_REPOS=~/Developer
export TTC_APIKEYS=true
export TTC_UPDATE_INTERVAL=20
export TTC_SAY_BOX=parrot
export TTC_REPOS_DEPTH=5
#Twitter
export CONSUMER_KEY=
export CONSUMER_SECRET=
export ACCESS_TOKEN=
export ACCESS_TOKEN_SECRET=
# Github
export HOMEBREW_GITHUB_API_TOKEN=
alias att="atom ."
alias gu="gem update"
alias gemc="gem cleanup"
alias nu="npm update -g"
alias plo="pip3 list --outdated"
alias piu="pip3 install --upgrade"
alias au="apm update"
alias bu="brew update"
alias bo="brew outdated"
alias bup="brew upgrade -all"
alias bc="brew cleanup"
alias ll="ls -lathr"
alias pgstart="pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start"
alias pgstop="pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log stop"
alias fs="foreman start"
alias bcup="groovy /Users/michael/Developer/JunkBin/Scripts/brew-cask-update.groovy"
alias log="git log --graph --pretty=format:'%Cred%H%Creset -%C(yellow)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset'"
alias del="rm -rf"
alias dcu="docker-compose up"
alias dcd="docker-compose down"
alias ctt="code ."
alias gospace="cd ~/Developer/GoWorkspace/src/github.com/utumno86"
alias ipaddress="ifconfig | grep 'inet ' | grep -Fv 127.0.0.1 | awk '{print $2}'"