This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " General options | |
| set nocompatible | |
| set hidden | |
| set smartindent autoindent | |
| set tabstop=4 shiftwidth=4 softtabstop=4 expandtab | |
| set number | |
| set nowrap | |
| set hls | |
| set mouse=a | |
| set ttymouse=xterm2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let g:ycm_semantic_triggers = {} " turn off autostart of semantic completion | |
| let g:ycm_delayed_semantic_triggers = { | |
| \ 'c' : ['->', '.'], | |
| \ 'objc' : ['->', '.'], | |
| \ 'ocaml' : ['.', '#'], | |
| \ 'cpp,objcpp' : ['->', '.', '::'], | |
| \ 'perl' : ['->'], | |
| \ 'php' : ['->', '::'], | |
| \ 'cs,java,javascript,d,vim,ruby,python,perl6,scala,vb,elixir,go' : ['.'], | |
| \ 'lua' : ['.', ':'], |