From ef79b4243b1ad2de89b903e6c03081e61bc19888 Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Mon, 26 Dec 2022 20:16:48 -0500 Subject: [PATCH] Add youcompleteme --- YouCompleteMe.html | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 YouCompleteMe.html diff --git a/YouCompleteMe.html b/YouCompleteMe.html new file mode 100644 index 0000000..1cb147a --- /dev/null +++ b/YouCompleteMe.html @@ -0,0 +1,33 @@ +
+
+

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.

+ +

I will asssume Vundle is already installed. First add this in the vundle +section of your .vimrc

+ +
+ Plugin 'ycm-core/YouCompleteMe' +
+ +

Now launch vim and run

+ +
+ :PluginInstall +
+ +

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

+ +
+ . ~/.vim/bundle/YouCompleteMe/install.py +
+ +

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!

+ +
+