Add youcompleteme

This commit is contained in:
Tyler Perkins 2022-12-26 20:16:48 -05:00
parent 8fee2a0b84
commit ef79b4243b
1 changed files with 33 additions and 0 deletions

33
YouCompleteMe.html Normal file
View File

@ -0,0 +1,33 @@
<div class="row no-gutters">
<div class="col-sm">
<p>You complete me is pretty cool, it helps alot with my vim workflow, so I'll
do a breif show of how to install it. Its really simple, and only installs for
your user too, so you can use it on shared machines.</p>
<p>I will asssume Vundle is already installed. First add this in the vundle
section of your .vimrc</p>
<blockquote>
Plugin 'ycm-core/YouCompleteMe'
</blockquote>
<p>Now launch vim and run</p>
<blockquote>
:PluginInstall
</blockquote>
<p>Go down to Youcompleteme and hit enter, and it'll take a second to install.
If you get an error saying how the YCM server failed to start, you may need to
compile YCM. Its not hard. Run this command</p>
<blockquote>
. ~/.vim/bundle/YouCompleteMe/install.py
</blockquote>
<p>You should see CMake go to work installing everything, and once it finishes
you can use YCM! Hope this helped, that end issue of running that install.py
tripped me up till I found it!</p>
</div>
</div>