aboutsummaryrefslogtreecommitdiffstats
path: root/bundle
AgeCommit message (Collapse)Author
2015-07-06Remove 'NERD Tree' pluginTeddy Wing
I've been using Netrw more and more after 9ec85f7fa5e118c0630e6b6457b71e80e57fa5dd. I think I'm going to switch over and leave NERD Tree now. Haven't really been using it for anything other than showing multiple directory levels of a project in a single view, which I now know is something Netrw can do. Also I mostly use Command-T opening files so haven't been using the plugin much lately.
2015-07-06Remove 'EasyGrep' pluginTeddy Wing
No longer using this one. I've been using ag exclusively, mostly directly from the console but sometimes using the plugin. For find and replace I've gotten more adept at using the arglist, so I haven't used EasyGrep in a long time. It can also be kind of slow, mostly because it doesn't use ag. Not sure if there's a way to integrate the two.
2015-04-02write-with-spaces: Enable tab completionTeddy Wing
Turn on tab completion to make it easier to navigate to a directory to save the file in.
2015-03-26Add write-with-spaces pluginTeddy Wing
Add a plugin to provide a way to write file names with spaces. Came from a Vim forum post. Handy to not have to always type backslashes if I want to save a file with spaces in it.
2015-02-09Add vim-unimpaired merge conflict movementsTeddy Wing
Grab the movement commands `[n` and `]n` to move between merge conflict markers. Makes it easier to get around when fixing conflicts in vimdiff. Copied from Tim Pope's vim-unimpaired plugin.
2014-12-13Update `auditory.vim` plugin to the latestTeddy Wing
2014-12-13Update `vim-ls-grep` plugin to the latestTeddy Wing
2014-11-24Add ls-grep pluginTeddy Wing
So I can grep my open buffers.
2014-11-12Add auditory.vim pluginTeddy Wing
2014-11-05Add ag.vim pluginTeddy Wing
Was doing a search for a class in HTML files and realised that I want the files open in vim and in order to do so I would either have to monkey with some shell piping or Control-Z/fg back and forth from ag output to vim whilst remembering which filenames I wanted to open and open them manually. Craziness. Finally installing Ag.vim for these instances when I want to instantly open vim buffers for the files in my search results.
2014-06-29Remove commentary.vim pluginTeddy Wing
Tried tcomment which is able to recognise the code and apply the appropriate comment instead of blindly using the comment format specified for the current file type. Removing commentary.vim as part of the switchover.
2014-06-29Add tcomment pluginTeddy Wing
Trying it out to see how it compares to commentary.vim. Getting annoyed that commentary.vim doesn't know to use JavaScript comments for a script embedded in HTML.
2014-06-18Command-T: update to latestTeddy Wing
2014-06-18Add vim-scala pluginTeddy Wing
Provides syntax highlighting and a bunch of other niceties that I haven't looked into.
2014-06-14Add go vim pluginTeddy Wing
Adds syntax highlighting and other filetype plugins for go. This package is a mirror of the official repo's vim plugins.
2014-06-04Add vim-javascript plugin for better syntax highlightingTeddy Wing
The stock highlighting didn't recognise multiline strings. "Like this \ one" Add a better JS syntax highlighter.
2014-05-30Add surround.vim pluginTeddy Wing
Deleting or modifying quotes and other surrounding characters has become too much of a pain. Time to install surround.
2014-05-26Create custom vim plugin for Stab commandTeddy Wing
Take the `Stab` command from my vimrc and put it in a custom plugin. This will keep my vimrc cleaner and since the the functions are autoloaded it may ever so slightly improve performance.
2014-05-25Add Gundo.vim pluginTeddy Wing
Shows a visual representation of the current file's undo tree. Makes it easier to see what you did and when, and roll back to a previous version. I tried installing undotree.vim (http://www.vim.org/scripts/script.php?script_id=4177), a pure Vimscript plugin that's similar, but it requires vim 7.3 with patch005 applied which I don't have, and I'm not crazy about compiling a new vim.
2014-05-11Add camelcasemotion pluginTeddy Wing
For moving inside camelCased and under_scored words.
2014-05-08Add Indent Guides pluginTeddy Wing
Visually displays indentation so you can have an easier time seeing where a block ends. Like BBEdit's tab stops (kind of), but looks more like the Visual Studio style (blech). Going to be amazingly useful since my team enforces 2-space indentation for all front-end code (WTF???!).
2014-04-20Add pluginsTeddy Wing
* Pathogen * Command-T * NerdTree * TabBar (disabled) * commentary.vim * PreserveNoEOL * EasyGrep