Fixed some problems in README and changed settings of YouCompleteMe

This commit is contained in:
Dennis Potter 2018-05-17 16:48:45 +02:00
parent 0d7b0b1f4c
commit e218ec0007
2 changed files with 9 additions and 3 deletions

View File

@ -24,7 +24,8 @@ To make use of all plugins in the `init.vim` file some additional software has t
```bash
sudo apt-get install fonts-powerline
sudo apt-get install exuberant-ctags
sudo apt-get install jupyter
pip3 install --upgrade pip
pip3 install jupyter
```
Without root rights the software has to be compiled manually. To install the powerline fonts, run:
```bash
@ -52,7 +53,12 @@ Then, clone the repository into you local `~/.config/nvim` directory, using:
```bash
git clone https://git.dennispotter.eu/Dennis/neovim-config ~/.config/nvim
```
To make sure the environment stays up to date, set an `git remote update` in your `~/.bashrc` or as a crontab.
To make sure the environment stays up to date, set a
```bash
(cd ~/.config/nvim && git pull)
```
in your `~/.bashrc` or as a crontab.
Alternatively, if you want to be able to update the config files on any client, setup a new git directory:
```bash

View File

@ -53,7 +53,7 @@ Plug 'bling/vim-bufferline'
Plug 'scrooloose/nerdtree', {'on': 'NERDTreeToggle'}
Plug 'simnalamburt/vim-mundo', {'on': 'MundoToggle'}
Plug 'wvffle/vimterm'
Plug 'Valloric/YouCompleteMe', { 'do': './install.py' }
Plug 'Valloric/YouCompleteMe', { 'do': './install.py --clang-completer' }
" versioning
Plug 'tpope/vim-fugitive'