Compare commits
No commits in common. "67b9c6b45aaead045faefb0b0313159c13535e90" and "858677ef79955e274a39c6d6fb27d26367660e9f" have entirely different histories.
67b9c6b45a
...
858677ef79
36
vimrc
36
vimrc
@ -36,21 +36,24 @@ endfor
|
|||||||
Pack 'mkitt/tabline.vim'
|
Pack 'mkitt/tabline.vim'
|
||||||
|
|
||||||
" YouCompleteMe
|
" YouCompleteMe
|
||||||
Pack 'ycm-core/YouCompleteMe', {'type': 'opt'}
|
" TODO: Try out neovim completion plugins to see if they are better
|
||||||
let g:ycm_key_list_select_completion = ['<C-n>', '<Down>']
|
if !platform#is_windows()
|
||||||
let g:ycm_key_list_previous_completion = ['<C-p>', '<Up>']
|
Pack 'ycm-core/YouCompleteMe',
|
||||||
let g:ycm_min_num_of_chars_for_completion = 1
|
\ {'type': 'opt', 'do': '!./install.py --clang-completer'}
|
||||||
let g:ycm_complete_in_comments = 1
|
let g:ycm_key_list_select_completion = ['<C-n>', '<Down>']
|
||||||
let g:ycm_complete_in_strings = 1
|
let g:ycm_key_list_previous_completion = ['<C-p>', '<Up>']
|
||||||
let g:ycm_collect_identifiers_from_comments_and_strings = 1
|
let g:ycm_min_num_of_chars_for_completion = 1
|
||||||
let g:ycm_seed_identifiers_with_syntax = 1
|
let g:ycm_complete_in_comments = 1
|
||||||
let g:ycm_autoclose_preview_window_after_insertion = 1
|
let g:ycm_complete_in_strings = 1
|
||||||
let g:ycm_always_populate_location_list = 1
|
let g:ycm_collect_identifiers_from_comments_and_strings = 1
|
||||||
let g:ycm_error_symbol = '▸'
|
let g:ycm_seed_identifiers_with_syntax = 1
|
||||||
let g:ycm_warning_symbol = '▸'
|
let g:ycm_autoclose_preview_window_after_insertion = 1
|
||||||
let g:ycm_goto_buffer_command = 'horizontal-split'
|
let g:ycm_always_populate_location_list = 1
|
||||||
let g:ycm_use_clangd = 0
|
let g:ycm_error_symbol = '▸'
|
||||||
|
let g:ycm_warning_symbol = '▸'
|
||||||
|
let g:ycm_goto_buffer_command = 'horizontal-split'
|
||||||
|
let g:ycm_use_clangd = 0
|
||||||
|
endif
|
||||||
" ultisnips - snippet engine
|
" ultisnips - snippet engine
|
||||||
Pack 'SirVer/ultisnips'
|
Pack 'SirVer/ultisnips'
|
||||||
Pack 'honza/vim-snippets'
|
Pack 'honza/vim-snippets'
|
||||||
@ -200,8 +203,7 @@ Pack 'jrozner/vim-antlr'
|
|||||||
|
|
||||||
" Plugins for remote integrations
|
" Plugins for remote integrations
|
||||||
Pack 'greymd/oscyank.vim', {'type': 'opt'}
|
Pack 'greymd/oscyank.vim', {'type': 'opt'}
|
||||||
let g:use_osc52 = $TMUX !=# '' &&
|
let g:use_osc52 = trim(system('tmux show-options -g set-clipboard')) ==# 'set-clipboard on'
|
||||||
\ trim(system('tmux show-options -g set-clipboard')) ==# 'set-clipboard on'
|
|
||||||
if g:use_osc52
|
if g:use_osc52
|
||||||
packadd oscyank.vim
|
packadd oscyank.vim
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user