1
0

vimrc_ycm_minimal 590 B

1234567891011121314151617181920212223
  1. " windows default encoding is not supported
  2. set encoding=utf-8
  3. " If you using neovim and python isn't loading, copy your python setup from your
  4. " vimrc here:
  5. "
  6. " let g:python3_host_prog = '/path/to/python3/with/neovim/module'
  7. "
  8. " But remember that neovim is not officially supported, so please reproduce in
  9. " Vim.
  10. " Enable debugging
  11. let g:ycm_keep_logfiles = 1
  12. let g:ycm_log_level = 'debug'
  13. " If the base settings don't repro, paste your existing config for YCM only,
  14. " here:
  15. " let g:ycm_....
  16. " Load YCM (only)
  17. let &rtp .= ',' . expand( '<sfile>:p:h' )
  18. filetype plugin indent on
  19. syn on