From 885a57139a0423fdafef80be99de942b88b5d6b1 Mon Sep 17 00:00:00 2001 From: Greg Date: Mon, 7 Mar 2016 12:10:39 -0600 Subject: [PATCH] add vim-lastplace TLDR: Intelligently reopen files where you left off. This is a feature I really enjoy having and this script has been very carefully crafted to be better than most of the snippets floating around the internet. For example, it won't be confused by commit messages and it will keep as much of the file on screen as possible if you were working at the end of a file. I may be biased because I did create this plugin. Submitting this pull request to start a discussion about including it. Thanks! --- vimrc.bundles | 1 + 1 file changed, 1 insertion(+) diff --git a/vimrc.bundles b/vimrc.bundles index f776fa31..015d7db6 100644 --- a/vimrc.bundles +++ b/vimrc.bundles @@ -7,6 +7,7 @@ Plugin 'airblade/vim-gitgutter' Plugin 'altercation/vim-colors-solarized' Plugin 'austintaylor/vim-indentobject' Plugin 'christoomey/vim-tmux-navigator' +Plugin 'dietsche/vim-lastplace' Plugin 'juvenn/mustache.vim' Plugin 'kchmck/vim-coffee-script' Plugin 'ctrlpvim/ctrlp.vim'