aboutsummaryrefslogtreecommitdiff
path: root/vim/filetype.vim
Commit message (Collapse)AuthorAgeFilesLines
* Add Vim filetype detection for RustTom Ryder2023-07-201-0/+4
|
* Set exports filetype in VimTom Ryder2023-07-201-0/+4
|
* Add missing comment to filetype.vimTom Ryder2023-07-201-0/+1
|
* Remove disused TextEditorAnywhere Vim supportTom Ryder2023-04-061-4/+0
|
* Remove mention of X resource subfiles in Vim checkTom Ryder2023-02-111-2/+0
|
* Support SSH many-Host lines and config subfilesTom Ryder2022-08-041-5/+10
|
* Add .xprofileTom Ryder2022-07-271-0/+2
|
* Correct another typo in gtkrc filetype detectionTom Ryder2022-06-271-2/+2
|
* Correct typo in gtkrc Vim filetype detectionTom Ryder2022-06-271-1/+1
|
* Update/extend Vim filetypesTom Ryder2022-06-271-29/+78
|
* Correct swapped Vim filetype definitionsTom Ryder2022-06-271-2/+2
|
* Highlight jinja2 files with Django's rulesTom Ryder2022-05-021-0/+4
| | | | Good enough for now.
* Set Vim filetype for X startup scriptsTom Ryder2022-04-301-0/+3
|
* Switch .xinitrc to .xsessionTom Ryder2022-04-271-1/+5
| | | | | | | | | | | | | | | | | | This is Debian-specific, but that's the only system with which I'm presently using X11 anyway. From Debian's startx(1): > Note that in the Debian system, what many people traditionally put in > the .xinitrc file should go in .xsession instead; this permits the > same X environment to be presented whether startx, xdm, or xinit is > used to start the X session. All discussion of the .xinitrc file in > the xinit(1) manual page applies equally well to .xsession. Keep in > mind that .xinitrc is used only by xinit(1) and completely ignored by > xdm(1). Indeed, everything just seems to work a bit better, probably because problems are more likely to be able to find the user instance of dbus.
* Remove Perl-6/Raku support for the momentTom Ryder2021-02-131-7/+1
|
* Add Golang filetype for *.go to VimTom Ryder2021-02-031-0/+4
|
* Add subtype flag for printcap Vim filetypeTom Ryder2020-05-211-1/+2
|
* Add printcap filetype detection in VimTom Ryder2020-05-211-0/+4
|
* Add a few more filetype detection hooksTom Ryder2020-05-161-0/+27
|
* Correct a commentTom Ryder2020-05-161-1/+1
|
* Add Mutt config match patterns for XDGTom Ryder2020-05-141-1/+2
|
* Use XDG basedirs for Git configTom Ryder2020-05-121-0/+1
|
* Some spelling fixesTom Ryder2020-05-091-4/+4
|
* Rename filetype repeat commandsTom Ryder2020-01-031-2/+2
|
* Use simpler "conf" filetype for .conf not "config"Tom Ryder2019-12-101-1/+1
|
* Support .yml extension for Vim ft=yamlTom Ryder2019-08-011-1/+2
|
* Revert to vimrc filenameTom Ryder2019-06-221-2/+6
|
* Add a path to Vim help filesTom Ryder2019-06-211-0/+1
|
* Whoops, forgot some vimrc file patternsTom Ryder2019-06-201-2/+2
|
* Rename vimrc and gvimrc to have .vim suffixTom Ryder2019-06-201-9/+3
| | | | | Since they don't need to have the same names when installed, this makes it marginally easier to set filetypes without special paths.
* Type proto/*.pro files as CTom Ryder2019-06-191-0/+1
|
* Define Perl::Critic config files as .ini formatTom Ryder2019-06-181-1/+3
|
* Add "GNUmakefile" to Vim ft=make patternTom Ryder2019-06-151-0/+1
|
* Remove unneeded password filetypeTom Ryder2019-06-141-6/+0
|
* Shorten filetype.vim load guardTom Ryder2019-05-301-8/+2
|
* Add filename pattern without period for viminfoTom Ryder2019-05-251-0/+1
|
* Move shebang change filetype hooks into pluginTom Ryder2019-05-211-6/+0
|
* Move single ftdetect rule into filetype.vimTom Ryder2019-05-181-0/+10
|
* Adjust formatting of autocmdTom Ryder2019-05-171-1/+3
|
* Remove unnecessary g: prefixes to Vim variablesTom Ryder2019-05-091-2/+2
|
* Add textarea filetypeTom Ryder2019-03-281-0/+4
| | | | | | | | This custom filetype is just a hook to hang functionality for TextEditorAnywhere documents under Windows. Most of the time, it's me writing email, or comments that benefit from email formatting, so I've configured <LocalLeader>f to switch to the mail filetype. This switching could probably benefit from a plugin, actually.
* Correct short :setf to :setfiletype commandTom Ryder2019-03-281-1/+1
|
* Add Lisp to filetypes.vimTom Ryder2019-01-031-0/+7
|
* Add new filetype pattern for muttrcTom Ryder2019-01-021-0/+1
|
* Move filetype.vim helper funcs into autoloadTom Ryder2018-12-081-78/+3
| | | | | May as well, now that we've dropped support for versions of Vim that don't have it.
* Restore filetype.vim shortcircuitTom Ryder2018-11-301-2/+2
|
* Suppress ~/.vim usage during vimrc version checkTom Ryder2018-11-301-2/+2
|
* Don't load my filetype.vim if Vim is too oldTom Ryder2018-11-301-2/+2
|
* Require Vim 7 for filetype and syntax highlightsTom Ryder2018-11-301-6/+3
| | | | | | It's time! The rest of the vimrc can probably be allowed to load, though.
* Make more of an effort with sudoedit(8) stripsTom Ryder2018-11-221-8/+44
| | | | | | | | | | | | | | Handle both kinds of templated temporary files produced by sudoedit(8): * /var/tmp/foo.XXXXXXXX * /var/tmp/fooXXXXXXXX.bar This means that editing /etc/resolv.conf now highlights correctly, having also in this commit moved the sudo detection to *before* the .conf fallback. The hardcoded temporary path for finding the files probably needs to be either determined at runtime or made configurable by the user.