aboutsummaryrefslogtreecommitdiff
path: root/vim
Commit message (Collapse)AuthorAgeFilesLines
* Respect VimL conventionTom Ryder2013-07-211-0/+5
|
* Make search highlight clearing quietTom Ryder2013-07-211-1/+1
|
* Observe VimL convention of two-space indentsTom Ryder2013-07-212-200/+200
|
* Move fillchars definitionTom Ryder2013-07-211-5/+5
| | | | | The features required for 'fillchars' are +windows and +folding, not syntax
* Restore tildeop settingTom Ryder2013-07-211-0/+4
|
* Refine color choices (no 'background' defined)Tom Ryder2013-07-201-3/+3
|
* Simple reordering of a couple of linesTom Ryder2013-07-181-4/+4
| | | | Pair autoread and autowrite together
* More verbose comments for gvimrc tooTom Ryder2013-07-181-1/+9
|
* Fix typo in commentTom Ryder2013-07-181-2/+2
|
* Comment the heck out of my .vimrcTom Ryder2013-07-181-42/+256
| | | | | | | | Including some minor re-ordering of lines so that they make more sense in sequence. I've been meaning to do this for some time as reading my .vimrc wasn't actually terribly instructive for someone who didn't already know what all these lines were; hell, even I forgot what some of them do
* More logical order for wrapping settingsTom Ryder2013-07-181-1/+1
|
* Delete unused ^X^] shortcutTom Ryder2013-07-181-1/+0
| | | | I don't think I've ever once actually used this feature
* Turn off modeline feature properlyTom Ryder2013-07-181-1/+1
|
* Keep more command, search, and undo historyTom Ryder2013-07-181-2/+2
|
* Make mapping timeout settings explicitTom Ryder2013-07-181-0/+2
|
* Merge nested if structures for viminfo controlTom Ryder2013-07-181-9/+7
|
* Explicitly set nospell, add spelllang switchesTom Ryder2013-07-181-1/+4
| | | | For conveniently moving between US and NZ English, as I often need to do
* Don't hide files with trailing tildes in netrwTom Ryder2013-07-181-1/+1
| | | | | I don't use that format for a backup suffix anyway, so I'd rather know they're there
* Append to rather than replace 'fileformat' valueTom Ryder2013-07-181-1/+1
|
* Start using ack more seriouslyTom Ryder2013-07-181-0/+0
|
* Replace gundo with undotreeTom Ryder2013-07-172-0/+0
|
* Add syntax files for TwigTom Ryder2013-07-111-0/+0
|
* Use vnoremap not xnoremapTom Ryder2013-07-101-1/+1
| | | | More compatible and I never use select mode anyway
* Upgrading ctrlpTom Ryder2013-07-091-0/+0
|
* Add Vim GnuPG pluginTom Ryder2013-07-091-0/+0
|
* Remove double-upTom Ryder2013-07-041-4/+1
|
* Should have been using these years ago reallyTom Ryder2013-07-031-0/+4
|
* Don't keep viminfo for temporary/sensitive filesTom Ryder2013-07-031-0/+12
|
* Make & act sanelyTom Ryder2013-07-031-0/+4
| | | | | Per @tpope's sensible.vim; & repeats the last substitution, but doesn't preserve flags, which you would almost always want to do.
* Updating Vim submodulesTom Ryder2013-06-255-0/+0
|
* Don't cache stuff in sensitive filesTom Ryder2013-06-211-1/+22
| | | | | | | Discovered pass(1) was saving backup, undo, and swap files in plaintext on my machine. These settings stop it. Also gave an existing augroup a nicer name.
* Restoring format flags togglingTom Ryder2013-06-101-0/+10
|
* OH MY GOD WHERE HAVE YOU BEEN ALL MY LIFETom Ryder2013-05-071-0/+1
|
* formatoptions should not be set in vimrcTom Ryder2013-05-073-14/+8
| | | | I have learned my lesson
* More conservative setting for synmaxcolTom Ryder2013-05-061-1/+1
|
* New Fugitive versionTom Ryder2013-05-031-0/+0
|
* Settings to make flowed plaintext work wellTom Ryder2013-05-031-0/+3
| | | | | Thanks very much to W. Caleb McDaniel for his awesome Mutt page: <http://wcm1.web.rice.edu/mutt-tips.html>
* Define rather than append to 'displayTom Ryder2013-04-201-1/+1
|
* Add digraph for ellipsisTom Ryder2013-04-201-0/+5
| | | | I think I got this from @tpope
* Stop tracking spelling filesTom Ryder2013-04-201-118/+0
|
* Upgrade obsession pluginTom Ryder2013-04-171-0/+0
|
* Updated pluginsTom Ryder2013-04-106-0/+0
|
* Add some tpope plugins I likedTom Ryder2013-03-294-0/+0
|
* Fix GUI font sizeTom Ryder2013-03-241-1/+1
|
* Remove clipboard setting from vimrcTom Ryder2013-03-221-5/+0
| | | | No longer needed as I've given up on trying to make Xming at all useful
* Upgrading Vim pluginsTom Ryder2013-03-065-0/+0
|
* Switch to Consolas for Windows fontTom Ryder2013-03-021-1/+1
| | | | | | | | | | Having subtle problems with Ubuntu Mono's Unicode behavior in PuTTY which is occasionally causing me some irritation. The lack of soft hyphens for reading man pages in UTF-8 locales was kind of a dealbreaker. The only other option is Deja Vu Sans Mono which I just can't bring myself to like at all.
* This is overengineering in retrospectTom Ryder2013-02-271-20/+14
|
* Cleverer syntax for filetype shortcutsTom Ryder2013-02-231-14/+20
|
* Wrap has('eval') checks around assignmentTom Ryder2013-02-231-1/+3
| | | | :let doesn't work if the +eval feature isn't loaded