From 197d10505f5e2967d58934b8f62ec7eb4568b521 Mon Sep 17 00:00:00 2001 From: Bill Niblock Date: Fri, 22 Sep 2017 11:15:26 -0400 Subject: [PATCH] vim-plugins: Cull and reorganize --- vim/vimrc-plugins | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/vim/vimrc-plugins b/vim/vimrc-plugins index e9ad3f1..e042bb4 100644 --- a/vim/vimrc-plugins +++ b/vim/vimrc-plugins @@ -10,17 +10,16 @@ endif call plug#begin('~/.vim/bundle') Plug 'tpope/vim-fugitive' - Plug 'tpope/vim-tbone' - Plug 'tpope/vim-surround' + Plug 'vimwiki/vimwiki' Plug 'tpope/vim-unimpaired' Plug 'tpope/vim-commentary' - Plug 'tpope/vim-endwise' - Plug 'vimwiki/vimwiki' + Plug 'ajh17/VimCompletesMe' - Plug 'sheerun/vim-polyglot' "Plug 'ludovicchabant/vim-gutentags' + Plug 'sheerun/vim-polyglot' + Plug 'junegunn/goyo.vim' - Plug 'tmux-plugins/vim-tmux' + Plug 'tpope/vim-tbone' call plug#end() " ============================================================================== @@ -30,7 +29,7 @@ call plug#end() let g:vimwiki_list = [{'path': '~/Workbench/vimwiki/', 'auto_tags': 1}] "" Insert my journal template, and the current date nnoremap tj :call NewJournal() -function! NewJournal() +function! NewJournal() abort .-1read ~/.vim/templates/journal s/Date/\=strftime("%A, %B %d")/ endfunction