aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge branch 'release/v0.57.0'v0.57.0Tom Ryder2018-06-217-319/+230
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.57.0: (45 commits) Bump VERSION Update paste_open.vim plugin Update auto_cache_dirs.vim plugin Add new vim_paste_open plugin and needed bindings Restore 'esckeys' setting Add .vimrc reload binding Add the "jetpack" buffer jump binding Remove 'wildignore' settings Greatly expand 'wildignore' Use literal leaders in mappings Reorder .vimrc file Remove unneeded 'showtabline' .vimrc setting Correct "Tmux" to "tmux" in a comment. Remove unneeded 'laststatus' .vimrc set Restructure indent settings in .vimrc Use more idiomatic `if 1` in .vimrc Remove unnecessary 'undofile' settings Remove 'esckeys' .vimrc setting Remove 'timeout' and related Vim settings Remove 'ttyfast' setting ...
| * | Bump VERSIONTom Ryder2018-06-211-2/+2
| |/
| * Update paste_open.vim pluginTom Ryder2018-06-211-0/+0
| |
| * Update auto_cache_dirs.vim pluginTom Ryder2018-06-211-0/+0
| |
| * Add new vim_paste_open plugin and needed bindingsTom Ryder2018-06-213-0/+6
| |
| * Restore 'esckeys' settingTom Ryder2018-06-211-0/+3
| | | | | | | | | | I remember now; otherwise things hang at the end of insert mode, which is a bit rubbish.
| * Add .vimrc reload bindingTom Ryder2018-06-211-0/+2
| |
| * Add the "jetpack" buffer jump bindingTom Ryder2018-06-211-0/+2
| |
| * Remove 'wildignore' settingsTom Ryder2018-06-211-30/+0
| | | | | | | | | | Changed my mind; they're too bulky for this file. They would probably be better in a plugin file if at all.
| * Greatly expand 'wildignore'Tom Ryder2018-06-211-4/+25
| | | | | | | | This probably needs to be a little plugin.
| * Use literal leaders in mappingsTom Ryder2018-06-211-16/+20
| |
| * Reorder .vimrc fileTom Ryder2018-06-201-194/+178
| | | | | | | | | | | | Put options up the top, starting with core ones and then feature-dependent ones, in alphabetical order, then mappings, then digraphs, then plugin-specific settings.
| * Remove unneeded 'showtabline' .vimrc settingTom Ryder2018-06-201-5/+0
| | | | | | | | This is the default anyway.
| * Correct "Tmux" to "tmux" in a comment.Tom Ryder2018-06-201-1/+1
| |
| * Remove unneeded 'laststatus' .vimrc setTom Ryder2018-06-201-4/+0
| | | | | | | | This is the default anyway.
| * Restructure indent settings in .vimrcTom Ryder2018-06-201-16/+6
| |
| * Use more idiomatic `if 1` in .vimrcTom Ryder2018-06-201-2/+2
| | | | | | | | | | | | These blocks are to exclude vim-tiny from trying to run :let commands, which it can't do; the usual way this seems to be turned off is checking the value "1", rather than the 'eval' feature.
| * Remove unnecessary 'undofile' settingsTom Ryder2018-06-201-9/+0
| | | | | | | | On Unix, 'undolevels' defaults to 1000, and 'undofile' defaults to off.
| * Remove 'esckeys' .vimrc settingTom Ryder2018-06-201-6/+0
| | | | | | | | I don't think this has ever actually caused or fixed a problem.
| * Remove 'timeout' and related Vim settingsTom Ryder2018-06-201-9/+0
| | | | | | | | More over-setting, for a problem I'm not sure I ever actually had.
| * Remove 'ttyfast' settingTom Ryder2018-06-201-4/+0
| | | | | | | | | | It defaults to on based on the terminal type, which seems pretty sensible, and seems to work fine with my tmux settings.
| * Reduce 'formatoptions' flag toggling to just 'a'Tom Ryder2018-06-201-11/+2
| | | | | | | | | | The other three that I've removed are almost certainly better in filetype plugins.
| * Simplify .vim 'paste' and 'pastetoggle' settingsTom Ryder2018-06-201-5/+1
| | | | | | | | | | 'paste' is off by default, obviously, and a terser comment can describe 'pastetoggle'.
| * Remove 'scrolloff' and 'sidescrolloff' .vimrc setTom Ryder2018-06-201-7/+1
| | | | | | | | | | 'scrolloff' defaults to 0 anyway, and I don't often run into 'sidescrolloff' at all.
| * Remove 'autoread' and 'autowrite' .vimrc settingsTom Ryder2018-06-201-8/+0
| | | | | | | | These seem like antipatterns, on reflection.
| * Add '**' to Vim 'path' rather than replacing itTom Ryder2018-06-201-1/+1
| |
| * Simplify boolean toggle options in .vimrcTom Ryder2018-06-201-8/+4
| | | | | | | | | | 'list', 'number', and 'spell' all default to off with a .vimrc, so they don't need to be set and can just have the mapping.
| * Remove 'complete' setting in .vimrcTom Ryder2018-06-201-4/+0
| | | | | | | | I nearly never use completion anyway, so best just to leave this out.
| * Tidy 'ruler' setting in .vimrcTom Ryder2018-06-201-4/+1
| |
| * Remove .vimrc 'showmode' settingTom Ryder2018-06-201-3/+0
| | | | | | | | It defaults to being on in Vim.
| * Remove Vim 'showcmd' settingTom Ryder2018-06-201-3/+0
| | | | | | | | I don't actually look at the keys I'm entering that often, if ever.
| * Remove .vimrc 'history' settingTom Ryder2018-06-201-3/+0
| | | | | | | | | | I don't think I can actually remember an instance of having needed to recall beyond the 50th command or search pattern.
| * Remove .vimrc 'switchbuf' settingsTom Ryder2018-06-201-7/+0
| | | | | | | | I never use it.
| * Remove .vimrc 'backupext' settingTom Ryder2018-06-201-3/+0
| | | | | | | | | | The default is fine, since any backups will be tucked away in a directory chosen by auto_cache_dirs.vim anyway, if possible.
| * Use a simpler test for colorscheme absenceTom Ryder2018-06-201-1/+1
| |
| * Add after/ftplugin for gitcommit to quote with >Tom Ryder2018-06-201-0/+25
| | | | | | | | | | | | I love the way this works when writing mail, and find myself missing it when writing Git commits that include block quotes. This is ported from ftplugin/mail.vim.
| * Use case sensitivity explicit operator in .vimrcTom Ryder2018-06-201-1/+1
| |
| * Remove .vimrc 'backup', 'writebackup' settingsTom Ryder2018-06-201-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | 'backup' is off by default, and :help 'writebackup' recommends against disabling it: > WARNING: Switching this option off means that when Vim fails to write > your buffer correctly and then, for whatever reason, Vim exits, you > lose both the original file and what you were writing. Only reset > this option if your file system is almost full and it makes the write > fail (and make sure not to exit Vim until the write was successful). The auto_cache_dirs.vim plugin turns this on if it sensibly can, anyway.
| * Refine colorscheme selection logicTom Ryder2018-06-201-5/+7
| |
| * Remove some unneeded silencingTom Ryder2018-06-191-20/+20
| |
| * Remove unneeded <silent>Tom Ryder2018-06-191-1/+1
| |
| * Move filetype print mapping to more logical placeTom Ryder2018-06-191-4/+3
| |
| * Simplify syntax settingsTom Ryder2018-06-191-3/+2
| |
| * Rearrange filetype.vim final stanzasTom Ryder2018-06-191-3/+3
| |
| * Add fallback log filetypeTom Ryder2018-06-181-1/+5
| |
| * Correct a filetype.vim commentTom Ryder2018-06-181-1/+1
| |
| * Merge branch 'hotfix/v0.56.1' into developTom Ryder2018-06-172-3/+3
| |\ | | | | | | | | | | | | | | | * hotfix/v0.56.1: Bump VERSION Add missing !
| * \ Merge branch 'release/v0.56.0' into developTom Ryder2018-06-171-2/+2
| |\ \ | | | | | | | | | | | | | | | | * release/v0.56.0: Bump VERSION
* | \ \ Merge branch 'hotfix/v0.56.1'v0.56.1Tom Ryder2018-06-172-3/+3
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | | | | | * hotfix/v0.56.1: Bump VERSION Add missing !
| * | | Bump VERSIONTom Ryder2018-06-171-2/+2
| | | |