my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add git configs, remove fish aliases

j3s 094d3c29 647b7c40

+57 -3
-3
.config/fish/config.fish
··· 16 16 end 17 17 18 18 alias vi=vim 19 - alias gs='git status' 20 - alias gd='git diff' 21 - alias gp='git pull --prune' 22 19 source ~/.config/fish/(hostname).fish
+33
.config/git/config
··· 1 + [alias] 2 + s = status 3 + d = diff 4 + p = pull --prune 5 + ds = diff --staged 6 + co = checkout 7 + br = branch 8 + amend = commit --amend -m 9 + aa = add -A . 10 + cm = commit -m 11 + lg = log --color --graph --pretty=format:'%Cgreen%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit 12 + lgs = log --graph --pretty=format:'%Cgreen%h%Creset - %s %C(yellow)%d' --abbrev-commit 13 + [color] 14 + ui = auto 15 + [core] 16 + excludesfile = ~/.config/git/gitignore 17 + editor = vim 18 + quotepath = false 19 + [apply] 20 + whitespace = nowarn 21 + [difftool] 22 + prompt = false 23 + [submodule] 24 + fetchJobs = 4 25 + [changelog] 26 + format = * %s [%an] 27 + [user] 28 + name = j3s 29 + email = j3s@cyberia.club 30 + [includeIf "gitdir:~/git/"] 31 + path = ~/.config/git/config-work 32 + [includeIf "gitdir:~/howdocs/"] 33 + path = ~/.config/git/config-work
+11
.config/git/config-work
··· 1 + [user] 2 + name = Jesse Olson 3 + email = jesse.olson@bestbuy.com 4 + [gpg] 5 + program = gpg 6 + [commit] 7 + gpgsign = true 8 + [changelog] 9 + format = * %s [%an] 10 + [sendemail] 11 + smtpserver = /usr/local/bin/msmtp
+13
.config/git/gitignore
··· 1 + .DS_Store 2 + .svn 3 + .sass-cache 4 + .bundle 5 + .yardoc 6 + *~ 7 + tags 8 + .dir-locals.el 9 + .projectile 10 + GPATH 11 + GRTAGS 12 + GTAGS 13 + .vscode