summary refs log tree commit diff
path: root/.vimrc
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2014-06-30 17:22:39 -0400
committerJune McEnroe <programble@gmail.com>2014-06-30 17:22:39 -0400
commitb6ee12f2041f84a5f233378c0756ca9c9385a780 (patch)
tree7d4985bf873ade61ca8beaf5e82a0004b698f18e /.vimrc
parentAdd nrformats setting (diff)
downloadsrc-b6ee12f2041f84a5f233378c0756ca9c9385a780.tar.gz
src-b6ee12f2041f84a5f233378c0756ca9c9385a780.zip
Add speeddating
Diffstat (limited to '')
-rw-r--r--.vimrc24
1 files changed, 14 insertions, 10 deletions
diff --git a/.vimrc b/.vimrc
index d45a1b60..51a45aaf 100644
--- a/.vimrc
+++ b/.vimrc
@@ -245,6 +245,16 @@ nmap <leader>gp :Git push<CR>
 Plug 'junegunn/vim-easy-align'
 vnoremap <silent> <Enter> :EasyAlign<Enter>
 
+" Auto-close braces, parens, quotes, etc.
+Plug 'Raimondi/delimitMate'
+let delimitMate_expand_cr = 1
+let delimitMate_expand_space = 1
+let delimitMate_jump_expansion = 1
+
+" Indent guides by alternating background colour.
+Plug 'nathanaelkane/vim-indent-guides'
+let g:indent_guides_start_level = 2
+
 " Pastebin.
 Plug 'Raynes/refheap.vim'
 " Show nearest tag in statusline.
@@ -263,6 +273,10 @@ Plug 'sickill/vim-pasta'
 Plug 'tpope/vim-commentary'
 " Surround text objects.
 Plug 'tpope/vim-surround'
+" Sublime-style multiple cursors.
+Plug 'terryma/vim-multiple-cursors'
+" Increment, decrement dates and roman numerals with C-a, C-x.
+Plug 'tpope/vim-speeddating'
 
 " Language support.
 Plug 'digitaltoad/vim-jade'
@@ -272,16 +286,6 @@ Plug 'pangloss/vim-javascript'
 Plug 'tpope/vim-markdown'
 Plug 'tpope/vim-ragtag'
 
-Plug 'Raimondi/delimitMate'
-let delimitMate_expand_cr = 1
-let delimitMate_expand_space = 1
-let delimitMate_jump_expansion = 1
-
-Plug 'nathanaelkane/vim-indent-guides'
-let g:indent_guides_start_level = 2
-
-Plug 'terryma/vim-multiple-cursors'
-
 call plug#end()
 
 colorscheme jellybeans