2012-05-28 14:38:01 +00:00
|
|
|
# My dotfiles
|
|
|
|
|
2012-08-26 17:07:30 +00:00
|
|
|
This is a collection of my dotfiles. Requirements are:
|
|
|
|
installed and working homebrew with installed node, npm
|
|
|
|
and the node jake-plugin. And zsh :-)
|
2012-05-28 14:38:01 +00:00
|
|
|
|
|
|
|
```
|
2013-02-22 18:43:59 +00:00
|
|
|
git clone git://github.com/webgefrickel/dotfiles ~/dotfiles
|
|
|
|
cd ~/dotfiles
|
2012-08-26 17:07:30 +00:00
|
|
|
jake
|
2012-05-28 14:38:01 +00:00
|
|
|
```
|
|
|
|
|
2013-02-22 18:43:59 +00:00
|
|
|
If you haven't configured ZSH to be your default shell yet:
|
|
|
|
restart your terminal and type
|
2012-08-26 17:07:30 +00:00
|
|
|
|
|
|
|
```
|
2013-02-22 18:43:59 +00:00
|
|
|
cd ~/dotfiles
|
2012-08-26 17:07:30 +00:00
|
|
|
jake zsh
|
|
|
|
```
|
|
|
|
|
|
|
|
Now change the file `.gitconfig.user` in your home-folder and
|
|
|
|
provide your git credentials, such as:
|
2012-05-28 15:16:38 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
[user]
|
|
|
|
name = Your name
|
|
|
|
email = youremail@domain.de
|
|
|
|
[github]
|
|
|
|
user = username
|
|
|
|
token = 1235687641287364
|
|
|
|
```
|
|
|
|
|
2012-08-26 17:07:30 +00:00
|
|
|
Finally restart your terminal and vim again, and you are ready to go.
|
|
|
|
|
|
|
|
## oh-my-zsh
|
|
|
|
|
2013-05-12 21:04:18 +00:00
|
|
|
I use a custom fork of the famous oh-my-zsh framework.
|
2012-08-26 17:07:30 +00:00
|
|
|
Have a look at the zshrc-file for custom aliases and functions.
|
2012-05-28 14:38:01 +00:00
|
|
|
|
|
|
|
## VIM
|
|
|
|
|
2013-05-12 21:04:18 +00:00
|
|
|
I use a lot of plugins and custom syntaxes. They are all
|
|
|
|
installed via vundle - for a list of the plugins see vimrc.
|
2012-05-28 14:38:01 +00:00
|
|
|
|
2013-05-12 21:04:18 +00:00
|
|
|
To get things to work properly you first have to install
|
|
|
|
vundle - see the instructions here: [vundle](https://github.com/gmarik/vundle)
|