17 lines
304 B
Markdown
17 lines
304 B
Markdown
# dotfiles
|
|
|
|
## Vim
|
|
|
|
```bash
|
|
ln -sv ${PWD}/vimrc ${HOME}/.vimrc
|
|
git clone https://github.com/VundleVim/Vundle.vim.git ${HOME}/.vim/bundle/Vundle.vim
|
|
```
|
|
|
|
## Bash
|
|
|
|
```shell
|
|
ln -sv ${PWD}/bashrc.d/ ${HOME}/.bashrc.d
|
|
ln -sv ${PWD}/bashrc ${HOME}/.bashrc
|
|
ln -sv ${PWD}/bash_profile ${HOME}/.bash_profile
|
|
```
|
|
|