-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IDE for C/C++ developer #19
Comments
so? |
I've been lazy recently. If you really need this, I could finish this in this week. Probably. |
Vim + YCM (Still Updating under this comment)
YES! Please Use YCM since YCM is so easy and smooth to use. Basic Setup
PS: If you want to enable YCM in
With Conan - set FLAGS manually
[requires]
OpenSSL/1.0.2o@conan/stable
[generators]
cmake
ycm
Use compiledbTODO PS: Here's are my config for YCM. Use it at your own risk. let g:spacevim_enable_ycm = 1
let g:spacevim_custom_plugins = [
\ ['rdnetto/YCM-Generator'],
\ ]
let g:ycm_error_symbol = '✗'
let g:ycm_complete_in_comments = 1
let g:ycm_collect_identifiers_from_comments_and_strings = 0
let g:ycm_confirm_extra_conf = 0
let g:ycm_seed_identifiers_with_syntax = 0
let g:ycm_semantic_triggers = {
\ 'c' : ['->', '.'],
\ 'cpp,objcpp' : ['->', '.', '::'],
\ 'php' : ['->', '::'],
\ 'cs,java,javascript,typescript,d,python,perl6,scala,vb,elixir,go' : ['.'],
\ 'ruby' : ['.', '::'],
\ 'lua' : ['.', ':'],
\ } |
Teach you how to make SpaceVim become a IDE for C/C++
The text was updated successfully, but these errors were encountered: