Skip to content

Commit 62be015

Browse files
committed
Added bundle YouCompleteMe to start working on proper code navigation and completion for python and possibly cpp.
1 parent a25a9ca commit 62be015

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ This repository contains my constantly evolving (hopefully) vim setup.
1010
1. Clone this repository into ~/.vim on Linux or ~/vimfiles on Windows.
1111
2. Launch vim and run the Ex command `:BundleInstall`
1212

13+
NOTICE: The bundle YouCompleteMe is a plugin with a compiled component. For
14+
this to work you need to install it manually by following the
15+
[Instructions](https://github.com/Valloric/YouCompleteMe#youcompleteme-a-code-completion-engine-for-vim)
16+
for your platform.
17+
1318
## Vim older than including 7.3:
1419

1520
For older versions, Vim needs a link to use the vimrc in ~/.vim on Linux or

vimrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Bundle 'troydm/easybuffer.vim'
3131
Bundle 'terryma/vim-multiple-cursors'
3232
" Needs ag binary installed additionally
3333
Bundle 'rking/ag.vim'
34+
Bundle 'Valloric/YouCompleteMe'
3435

3536
" Bundles from vim-scripts.org
3637
Bundle 'a.vim'
@@ -102,3 +103,4 @@ endif
102103
" Searching using Ctrl+P
103104
map <Leader>o :CtrlPMixed<CR>
104105
106+
let g:ycm_autoclose_preview_window_after_completion = 1

0 commit comments

Comments
 (0)