2017-07-13 10:06:09 +02:00
|
|
|
# My `neovim` setup
|
|
|
|
|
2020-10-25 17:37:01 +01:00
|
|
|
Having used `neovim` for a few month, with symlinks for the configuration and
|
|
|
|
the plugins, I want to start a new setup.
|
2017-07-13 10:06:09 +02:00
|
|
|
|
2020-10-25 17:37:01 +01:00
|
|
|
Firstly, I don't use any more `pathogen` for the management of plugins, but
|
|
|
|
`vim-plug` instead. To install and activate `vim-plug` see the
|
|
|
|
[documentation][1].
|
|
|
|
|
|
|
|
I'm using the [nord color scheme][5].
|
2017-07-13 10:06:09 +02:00
|
|
|
|
2017-08-16 12:10:24 +02:00
|
|
|
## Requirements
|
|
|
|
|
|
|
|
1. `neovim`
|
2020-10-25 17:37:01 +01:00
|
|
|
1. `git`
|
|
|
|
1. `nodejs`, `yarn`
|
|
|
|
1. [ripgrep][2]
|
|
|
|
1. [The Silver Searcher (`ag`)][3]
|
2017-08-16 12:10:24 +02:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2020-10-25 17:37:01 +01:00
|
|
|
1. Clone the repository.
|
|
|
|
1. Create a symlink.
|
|
|
|
1. Check [the requirements][4].
|
|
|
|
1. Start `neovim`.
|
|
|
|
1. Install the plugins (`:PlugInstall`).
|
2017-08-16 12:10:24 +02:00
|
|
|
|
|
|
|
``` bash
|
|
|
|
git clone <URL>
|
|
|
|
ln -s neovim .config/neovim
|
|
|
|
nvim
|
|
|
|
:PlugInstall
|
|
|
|
```
|
|
|
|
|
2020-10-25 17:37:01 +01:00
|
|
|
[1]: https://github.com/junegunn/vim-plug/blob/master/README.md#neovim
|
|
|
|
[2]: https://github.com/BurntSushi/ripgrep
|
|
|
|
[3]: https://github.com/ggreer/the_silver_searcher
|
|
|
|
[4]: /requirements
|
|
|
|
[5]: https://www.nordtheme.com/ports/vim
|