commit 7005b10faa918cce51587fc791ddacc59770cde1 parent c7ec7bcb5656c2cd2bbd9acea32d5d4b59098035 Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Mon, 9 Jul 2018 09:47:11 -0400 Add signature abbreviation and fix python deprecation warning Diffstat:
M | links/.vim/plugin/correct.vim | | | 4 | ++++ |
M | links/.vim/vimrc | | | 5 | +++++ |
2 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/links/.vim/plugin/correct.vim b/links/.vim/plugin/correct.vim @@ -15,3 +15,7 @@ augroup danish_symbols inoremap OE ø inoremap AA å augroup END + +augroup abbreviations + iabbrev ssig -- <cr>Anders Damsgaard, Ph.D.<cr>https://adamsgaard.dk +augroup END diff --git a/links/.vim/vimrc b/links/.vim/vimrc @@ -1,3 +1,8 @@ +" temporarily fix deprecation warning +if has('python3') + silent! python3 1 +endif + source ~/.vim/plugins.vim " make sure that plugins are sourced first set autoread " reload files when changed on disk