2016-07-27 18:34:27 +02:00
|
|
|
## My (neo)vim configuration
|
2013-11-22 18:20:32 +01:00
|
|
|
|
2015-10-11 15:15:09 +02:00
|
|
|
### Install
|
|
|
|
```shell
|
2016-07-27 18:34:27 +02:00
|
|
|
config=$XDG_CONFIG_HOME/nvim
|
2018-12-01 15:28:53 +01:00
|
|
|
plugins=$XDG_DATA_HOME/nvim/plugins
|
|
|
|
site=$XDG_DATA_HOME/nvim/site/autoload
|
|
|
|
mkdir -p $plugins $site
|
2013-11-22 18:20:32 +01:00
|
|
|
|
2018-12-01 15:28:53 +01:00
|
|
|
curl https://git.io/VgrSsw -Lo $site/plug.vim
|
|
|
|
git clone https://github.com/rnhmjoj/dotvim.git $config
|
2015-10-11 15:15:09 +02:00
|
|
|
```
|
2018-12-01 15:28:53 +01:00
|
|
|
|
|
|
|
run `nvim +PlugInstall`
|
2013-11-22 18:20:32 +01:00
|
|
|
|
2015-10-11 15:15:09 +02:00
|
|
|
### Update
|
2018-12-01 15:28:53 +01:00
|
|
|
run `nvim +PlugUpdate`
|