| @ -1,29 +1,32 @@ | |||||
| # Setup | # Setup | ||||
| First, clone this repository into ~/dotfiles. | |||||
| First, clone this repository into `~/dotfiles`. | |||||
| # Configure bash | |||||
| ## Configure bash | |||||
| Add the following to your .bashrc: | Add the following to your .bashrc: | ||||
| ```sh | ```sh | ||||
| # Better prompt. | # Better prompt. | ||||
| source ~/dotfiles/prompt.sh | source ~/dotfiles/prompt.sh | ||||
| ``` | ``` | ||||
| # Configure vim | |||||
| ## Configure vim | |||||
| Install the jellybeans colorscheme, either by downloading jellybeans.vim into | |||||
| .vim/colors/, or by installing a plugin manager and using it to install | |||||
| Install the jellybeans colorscheme, either by downloading `jellybeans.vim` into | |||||
| `.vim/colors/`, or by installing a plugin manager and using it to install | |||||
| jellybeans. | jellybeans. | ||||
| Then add the following to your .vimrc: | |||||
| Then add the following to your `.vimrc`: | |||||
| ``` | ``` | ||||
| source ~/dotfiles/config.vim | source ~/dotfiles/config.vim | ||||
| ``` | ``` | ||||
| # Configure tmux | |||||
| ## Configure tmux | |||||
| Run the following command: | Run the following command: | ||||
| ```sh | ```sh | ||||
| $ ln -s ~/dotfiles/tmux.conf .tmux.conf | |||||
| $ ln -s ~/dotfiles/tmux.conf ~/.tmux.conf | |||||
| ``` | ``` | ||||