You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
set nocompatible
|
|
|
|
|
|
|
|
filetype off
|
|
|
|
|
|
|
|
let &runtimepath .= ',' . expand('<sfile>:p:h:h')
|
|
|
|
if $USER == 'runner'
|
|
|
|
let &runtimepath .= ',' . expand('<sfile>:p:h:h') . '/vader.vim'
|
|
|
|
let g:run_in_ci = v:true
|
|
|
|
else
|
|
|
|
let &runtimepath .= ',' . expand('<sfile>:p:h:h') . '/../vader.vim'
|
|
|
|
let g:run_in_ci = v:false
|
|
|
|
endif
|
|
|
|
|
|
|
|
" NOTE: echom will frozen vim8 in GitHub Action
|
|
|
|
" echom &runtimepath
|
|
|
|
|
|
|
|
filetype plugin indent on
|
|
|
|
syntax enable
|
|
|
|
|
|
|
|
nnoremap <silent> Q :qa!<CR>
|