aboutsummaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Remove per-system vimrc fixingTom Ryder2019-05-241-5/+0
| | | | This is just overkill. Move the useful bits into the vimrc.
* Remove en passant assignment from MakefileTom Ryder2019-05-181-1/+1
|
* Move single ftdetect rule into filetype.vimTom Ryder2019-05-181-6/+0
|
* Don't clean up the dotfiles(7df) manualTom Ryder2019-05-171-1/+0
| | | | It's versioned.
* Correct path to dotfiles(7df) manual clean targetTom Ryder2019-05-171-1/+1
|
* Revert "Dispense with system-dependent files"Tom Ryder2019-05-171-0/+5
| | | | | | This reverts commit 1c51d2e98e0e0ec91da7ff3a93ad84f9767d0658. Already found problems--trips up using the -V command line option.
* Dispense with system-dependent filesTom Ryder2019-05-161-5/+0
| | | | Let's see how well just :set all& works.
* Add GVIMRC Makefile variableTom Ryder2019-01-151-1/+3
|
* Further attempts at sane Emacs VISUAL settingTom Ryder2019-01-041-1/+4
|
* Add my new .emacs fileTom Ryder2019-01-011-0/+4
|
* Use "stub .vimrc" method to dodge vim-tinyTom Ryder2018-12-041-1/+2
|
* Make separate install-bash-completion targetTom Ryder2018-12-021-1/+5
| | | | Don't make it a default just yet, either.
* Remove redundant element from install scripts pathTom Ryder2018-11-301-2/+2
|
* Add config file for mpvTom Ryder2018-11-251-0/+5
| | | | | | Only one line so far, but it's a good one: don't open a new window to try to show me album art when I play FLACs, especially since it doesn't work.
* Remove a lot of alignment spacingTom Ryder2018-11-231-3/+3
|
* Add a dillorc fileTom Ryder2018-11-221-0/+12
| | | | | | | | | I'm using this browser on an old ThinkPad. Firefox runs, but it's slow, and lately I'm spending a lot of time on sites that don't require JavaScript or anything like that. Let's see how this goes. The `save_dir` doesn't accept tildes in it as a shorthand for the home directory, so I've had to template it with mi5->m4.
* Correct sxhkd installation pathTom Ryder2018-11-211-1/+1
|
* Add Bash settings to Vim readline highlightingTom Ryder2018-11-161-1/+7
| | | | | This includes the creation of a hitherto-unneeded Makefile target install-vim-syntax.
* Scrap the nvim.vim runtime includeTom Ryder2018-09-051-1/+0
| | | | | It's overkill; just add comments explaining why we're setting what the Vim default is.
* Move NeoVim-specific config to subfileTom Ryder2018-07-261-2/+3
|
* Correct VIMRC path for NeoVim install targetTom Ryder2018-07-251-1/+1
|
* Scrap auto_cache_dirs plugin for a new approachTom Ryder2018-07-181-1/+7
| | | | | | | | Trying this instead; creating the relevant directories at install time. Also putting all three under one "cache" subdir of ~/.vim or ~/vimfiles. I'm not sure this is actually better, but I do like that the relevant options are now set in the .vimrc rather than in a plugin, so I guess we'll see.
* Add extra Perl file detection rulesTom Ryder2018-07-091-0/+6
|
* Specify which Vim to run in MakefileTom Ryder2018-07-091-1/+3
|
* Rearrange Makefile for Neovim installTom Ryder2018-07-071-6/+5
|
* Add mked(1df) and mkvi(1df)Tom Ryder2018-07-031-0/+2
|
* Convert space indents to tabs in MakefileTom Ryder2018-07-031-3/+3
|
* Handle system-specific undos with system.vim fileTom Ryder2018-07-031-6/+4
|
* Use if not && for conditional installTom Ryder2018-07-021-4/+6
| | | | The whole expression evaluates true this way.
* Add CentOS and Debian .vim tweaksTom Ryder2018-07-021-1/+4
|
* Add mkdir for ~/.vim/configTom Ryder2018-07-021-0/+1
|
* Add vim config subfile to undo Debian's changesTom Ryder2018-07-021-0/+1
|
* Provide install-neovim targetTom Ryder2018-07-021-0/+5
|
* Include install-vim-plugin in install-vim targetTom Ryder2018-07-011-1/+2
|
* Merge HTML timestamp into after/ftplugin/html.vimTom Ryder2018-07-011-10/+4
| | | | | I don't see myself breaking this out into its own ftplugin, and the Makefile can be simpler this way.
* Support nested dirs in two Vim runtime subdirsTom Ryder2018-07-011-4/+10
| | | | ~/.vim/after/ftplugin and ~/.vim/autoload, specifically.
* Revert "Start using ~/.vim/vimrc as vimrc path"Tom Ryder2018-07-011-3/+2
| | | | | | This reverts commit 40c1e1ace9531ae11f44dde2b893dfd6fae0cc3c. I don't actually like this much.
* Start using ~/.vim/vimrc as vimrc pathTom Ryder2018-06-301-2/+3
| | | | This conveniently enables filtering out truly ancient Vims.
* Adjust Vim helptags build commandTom Ryder2018-06-301-1/+1
|
* Add CSV, TSV, and password file filetypesTom Ryder2018-06-301-3/+9
|
* Remove ftplugin overrides for html/markdownTom Ryder2018-06-301-6/+0
| | | | No longer needed
* Refactor ftplugins into single filesTom Ryder2018-06-301-4/+1
| | | | Each thereby effectively becomes its own .vimrc for that type.
* Use ftplugins for filetype mappings insteadTom Ryder2018-06-291-1/+1
|
* Refactor filetype-specific .vimrc materialTom Ryder2018-06-261-2/+1
| | | | | | | | Put filetype bindings into a separate file filemap.vim at the same level as filetype.vim, to be loaded directly after the "filetype" command. This removes per-filetype logic one step from ~/.vimrc, which seems appropriate, and also allows me to use long line breaks in the new file.
* Don't create ~/.vim/configTom Ryder2018-06-221-1/+0
|
* Add -e flag to Vim :helptags buildTom Ryder2018-06-221-1/+1
| | | | Prevents warnings on stderr about output not being to a terminal.
* Use simpler Vim :helptags build commandTom Ryder2018-06-211-2/+1
|
* Use autoload function for temp-makeprg :lmakeTom Ryder2018-06-171-0/+5
|
* Rename terminfo files to *.ti extensionTom Ryder2018-06-111-1/+1
|
* Apply t_cm hack to Makefile Vim invocationTom Ryder2018-06-111-1/+2
| | | | | This prevents it from trying to move output to the bottom of the screen during the make(1) run.