aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
Commit message (Collapse)AuthorAgeFilesLines
...
* Move line number .vimrc config into subfileTom Ryder2017-10-281-4/+0
| | | | | This file is rather short; it may turn out to make more sense to put these settings elsewhere a bit later.
* Move terminal .vimrc config into subfileTom Ryder2017-10-281-28/+0
|
* Move whitespace .vimrc config into subfileTom Ryder2017-10-281-15/+0
| | | | The StripTrailingWhitespace() function should perhaps be its own plugin.
* Move list .vimrc config into subfileTom Ryder2017-10-281-9/+0
| | | | | By "list" here I am referring to options for Vim's 'list' display setting, showing control characters visually.
* Move BigFileMeasures() .vimrc func into subfileTom Ryder2017-10-281-29/+0
| | | | | | Also add a note to IDEAS.md for later to consider packaging this as a proepr plugin, even if it doesn't actually leave the dotfiles repository just yet.
* Move format .vimrc config into subfileTom Ryder2017-10-281-32/+0
| | | | | The ToggleFormatFlag function might actually be better implemented as some sort of plugin.
* Move linebreak .vimrc config into subfileTom Ryder2017-10-281-32/+0
| | | | | | I'm not quite so sure about this one. The ToggleBreak() function might actually be better in a plugin on its own. The rest of it makes sense though.
* Move windows .vimrc config into subfileTom Ryder2017-10-281-28/+0
| | | | Not the operating system; Vim editor windows.
* Move wildmenu .vimrc config into subfileTom Ryder2017-10-281-24/+0
|
* Move spelling .vimrc config into subfileTom Ryder2017-10-281-27/+0
|
* Move indent .vimrc config into subfileTom Ryder2017-10-281-28/+2
|
* Move digraphs .vimrc config into subfileTom Ryder2017-10-281-7/+0
|
* Move syntax config back into .vimrcTom Ryder2017-10-281-0/+13
| | | | | | | | | | This reverts commit 5dba4c. The order of the configuration matters more for these settings, because the "sahara" colorscheme is only available after loading it as a plugin. I'll divest some other stuff that should be less sensitive to the order in which it's loaded first, and then tackle this one afterwards.
* Move syntax highlight .vimrc config into subfileTom Ryder2017-10-281-13/+0
| | | | | | This appears to break my choice of syntax colorscheme; the order of loading some of the previous directives in the configuration may have been relevant.
* Move search .vimrc config into subfileTom Ryder2017-10-281-27/+0
|
* Move swapfile .vimrc config into subfileTom Ryder2017-10-281-33/+0
|
* Add ! to runtime for sourcing vimrc subfilesTom Ryder2017-10-281-1/+1
| | | | | | | From :help :runtime: > When [!] is included, all found files are sourced. When it is not > included only the first found file is sourced.
* Move undo .vimrc config into subfileTom Ryder2017-10-281-33/+0
| | | | | Interestingly, this does not seem to work, and this configuration doesn't get loaded; I suspect the :runtime line is not quite right.
* Move backup .vimrc config into subfileTom Ryder2017-10-281-27/+0
| | | | Replace the test.vim file placed by 19f6f3 to do this.
* Set up .d-style vimrc subdir for config breakupTom Ryder2017-10-281-0/+4
| | | | | | | | | | | | Before loading up all the plugins proper from ~/.vim/bundle with Pathogen, apply :runtime to load all .vim files in a new config directory, installed by the Makefile. I hope that this will enable me to break most of my .vimrc up into logically-arranged subfiles. This is just a guess at a good way of doing this that will almost certainly need refinement and restructuring later.
* Move .vimrc 'encoding' to beneath scriptencodingTom Ryder2017-10-281-8/+6
| | | | | | | | | | | | | The Vim :help for "scriptencoding" specifies: > If you set the 'encoding' option in your .vimrc, > :scriptencoding must be placed after that. E.g.: > set encoding=utf-8 > scriptencoding utf-8 Also move it into the +multi_byte feature check, though this isn't too important as the :help specifies that the command is ignored if that feature is not available.
* Force silence for Vim syntax enablingTom Ryder2017-06-101-2/+2
| | | | | Might just be a peculiarity of OpenIndiana's build, but it raises an error as it tries to load nonexistent syntax files otherwise
* Remove unused filetype aliasesTom Ryder2017-01-031-16/+0
| | | | These have fallen into disuse--`set ft=...` seems to be fine
* Make Vim 'breakindent' subject to \b toggleTom Ryder2016-11-161-5/+9
| | | | | It impedes accurate copypasting from terminal emulators otherwise, which is the main reason I implemented \b
* Set path to ** to start using :findTom Ryder2016-09-131-0/+5
|
* Restore color to VimTom Ryder2016-08-141-1/+1
| | | | Feels weird to come back to it; let's see if I decide to stay
* Trying new 'breakindent' Vim featureTom Ryder2016-08-041-0/+5
| | | | <https://i.imgur.com/ze2uZQG.png>
* Increase context for syntax highlightingTom Ryder2016-07-191-1/+2
|
* Specify encoding of .vimrcTom Ryder2016-07-191-0/+3
|
* Trying a different colorschemeTom Ryder2016-06-291-1/+1
|
* Remove ancient IRC quoteTom Ryder2016-06-011-13/+0
|
* Remove blank lines at end of filesTom Ryder2016-03-281-1/+0
|
* Fix confusing comment with poor grammarTom Ryder2015-07-071-2/+1
|
* Use only single quotes for consistencyTom Ryder2015-07-021-2/+2
|
* Comment nitpickTom Ryder2015-06-291-1/+1
|
* Remove reference to nonexistent unimpaired bindsTom Ryder2015-06-241-1/+1
|
* Nitpick: fix indenting in vimrcTom Ryder2015-06-171-4/+4
|
* More thorough check for 'j' in 'formatoptions'Tom Ryder2015-05-131-3/+3
| | | | Found in @tpope's vim-sensible
* Remove unmap of QTom Ryder2015-04-071-3/+0
| | | | | Ex mode is actually kind of handy when doing a set of text transformations, e.g. substitutions/pattern deletions
* Remove the unmap for K as I'm actually using itTom Ryder2015-04-071-5/+0
| | | | | Doing a lot more shell and some C programming these days and this has actually become sort of useful.
* Remove an unneeded unmapTom Ryder2015-04-071-3/+0
| | | | | I unmapped this initially because I was using the Escape key; nowadays I never do, I use Ctrl+[, so it's no longer doing any harm
* Remove the ~/.vimrc.local searchTom Ryder2015-04-021-7/+0
| | | | Using ~/.vim/after instead
* Remove redundancy for previous commitTom Ryder2015-04-021-1/+1
|
* Binding for copypaste convenienceTom Ryder2015-04-021-0/+15
|
* Use full version of :substitute in vimrcTom Ryder2015-01-201-1/+1
|
* Move netrw settings into after scriptTom Ryder2015-01-201-17/+0
|
* Check persistent_undo feature before unsettingTom Ryder2014-12-021-1/+3
|
* Don't use Pathogen if Vim is ancientTom Ryder2014-11-071-4/+6
| | | | | At least on Debian's stock Vim on really old machines, loading Pathogen causes a segfault that leaves Vim looping forever.
* Make function of whitespace stripperTom Ryder2014-11-031-2/+9
|
* Make explicit local varsTom Ryder2014-11-031-2/+2
|