项目作者: simonewebdesign

项目描述 :
:fish: fish 'n' stuff
高级语言: Shell
项目地址: git://github.com/simonewebdesign/dotfiles.git
创建时间: 2015-11-20T11:40:46Z
项目社区:https://github.com/simonewebdesign/dotfiles

开源协议:

下载


dotfiles

Just my own settings. Right now there are only bash aliases and fish functions, but there could be just about anything.

Getting started

Prerequisite: Have you installed fish and set up git?

The following will copy your configuration.

Just copy and paste this on your terminal:

  1. cd
  2. git clone git@github.com:simonewebdesign/dotfiles.git
  3. cp -r dotfiles/.config ~/
  4. rm -rf dotfiles
  5. # Abbreviations (put these in config.fish to persist them)
  6. abbr --add be bundle exec
  7. abbr --add ga git add
  8. abbr --add gco git checkout
  9. abbr --add gcom git commit
  10. abbr --set-cursor --add gcomm 'git commit -m "`%`"'
  11. abbr --add gd git diff
  12. abbr --add gdc git diff --cached
  13. abbr --add gds git diff --stat
  14. abbr --add gp 'git push -u origin (git rev-parse --abbrev-ref HEAD)'
  15. abbr --add gst git stash
  16. abbr --add l git log --oneline
  17. abbr --add s git status -s
  18. abbr --add st git status