File: vimrc

package info (click to toggle)
vim-youcompleteme 0%2B20230109%2Bgit7620d87%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,404 kB
  • sloc: python: 10,569; sh: 203; cpp: 121; makefile: 24; f90: 5; xml: 1
file content (25 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
runtime defaults.vim
let g:ycm_test_plugin_dir = expand( '<sfile>:p:h:h' )
set mouse=a
set lines=30
set columns=80
set shortmess+=c

let g:ycm_confirm_extra_conf=0

augroup YCMTest
  au!
  au SwapExists * let v:swapchoice = 'e'
augroup END

if $AUTOPKGTEST_TMP == ''
  let &runtimepath = g:ycm_test_plugin_dir . ',' . &runtimepath
elseif $YCM_TEST_VAM == 'yes'
  let &runtimepath = '~/.vim,' . &runtimepath . ',~/.vim/after'
else
  packadd! youcompleteme
endif

filetype plugin indent on
syntax enable
set modeline