diff options
author | Teddy Wing | 2022-06-01 20:40:30 +0200 |
---|---|---|
committer | Teddy Wing | 2022-06-01 21:03:33 +0200 |
commit | e3ec82e56b08d6d0fc9098eb93dcaf121f536904 (patch) | |
tree | b3783e372b6b08ecfc1acd8ee839135919ae9be7 /projects | |
parent | 7da6f24af2750e12cae9448847952fa528399539 (diff) | |
download | dotvim-e3ec82e56b08d6d0fc9098eb93dcaf121f536904.tar.bz2 |
vimrc: Disable context.vim by default
Enable it by default in AODocs paths.
Diffstat (limited to 'projects')
-rw-r--r-- | projects/aodocs.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/projects/aodocs.vim b/projects/aodocs.vim index 971d3c8..0d9c2e3 100644 --- a/projects/aodocs.vim +++ b/projects/aodocs.vim @@ -45,6 +45,12 @@ augroup AODocs autocmd BufRead,BufEnter $VIM_PROJECT_PATH_AODOCS_UFO_EXTENSION/*.js \ setlocal path+=$VIM_PROJECT_PATH_AODOCS_UFO_EXTENSION_MODULE + " Turn on context.vim + autocmd BufRead,BufEnter + \ $VIM_PROJECT_PATH_AODOCS_GO/* + \,$VIM_PROJECT_PATH_AODOCS/* + \ ContextEnable + autocmd BufRead,BufEnter *.todo \ nnoremap <buffer> <Leader>yy :call <SID>TodoCopyLast()<CR> augroup END |