all: improve readme

master
Guillaume Dott 2019-04-15 13:58:46 +02:00
parent d2fe83051e
commit e2311bb711
2 changed files with 26 additions and 6 deletions

View File

@ -3,6 +3,32 @@ dotfiles
Configuration for zsh, vim, awesome, ...
## XDG
Some configurations use XDG standard.
```
export DOTFILES=$(pwd)
export PROG=zsh vim git tmux dunst rofi i3blocks
for config in $PROG; do ln -s $DOTFILES/$config $XDG_CONFIG_HOME/; done
```
# zsh
```
ln -s $DOTFILES/zsh/.zshenv $HOME/
git clone https://github.com/zsh-users/zsh-completions.git $XDG_CONFIG_HOME/zsh/zsh-completions
```
# vim
```
mkdir -p $XDG_CONFIG_HOME/vim/bundle
git clone https://github.com/gmarik/vundle.git $XDG_CONFIG_HOME/vim/bundle/vundle
vim +BundleInstall +qall
```
## LICENSE
Everything in this repository is released under the WTFPL.

View File

@ -1,6 +0,0 @@
```
ln vimrc ~/.vimrc
mkdir -p ~/.vim/bundle
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
vim +BundleInstall +qall
```