aboutsummaryrefslogtreecommitdiff
path: root/vim/filetype.vim
Commit message (Collapse)AuthorAgeFilesLines
* Add ASM to Vim filetypesTom Ryder2018-08-061-0/+4
|
* Make a filetype.vim comment consistentTom Ryder2018-07-161-1/+1
|
* Remove pattern \m where not needed for 'magic'Tom Ryder2018-07-151-3/+3
|
* Add missing dot to mutt filetype.vim pathTom Ryder2018-07-101-1/+1
|
* Adjust comment on scripts.vim loadTom Ryder2018-07-091-3/+3
|
* Adjust comments in filetype.vimTom Ryder2018-07-091-3/+5
|
* Add patterns for Vim help file detectionTom Ryder2018-07-081-0/+2
|
* Move shebang updating into filetype.vimTom Ryder2018-07-081-0/+13
| | | | Much more logical location.
* Correct alphabetical order of filetype.vimTom Ryder2018-07-041-34/+34
|
* Refactor filetype-specific .vimrc materialTom Ryder2018-06-261-12/+12
| | | | | | | | 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.
* Expand/fix messages filetype detectionTom Ryder2018-06-251-2/+2
|
* Add password filetypeTom Ryder2018-06-231-0/+6
|
* Add "gitrebase" Vim filetypeTom Ryder2018-06-231-0/+4
|
* 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
|
* Fix comments in vim/filetype.vimTom Ryder2018-06-151-2/+6
|
* Add Xresources filenamesTom Ryder2018-06-141-0/+2
|
* Add more names to Vim Bash typesTom Ryder2018-06-141-0/+4
|
* Refactor tilde and extension strippingTom Ryder2018-06-131-36/+44
|
* Correct Mutt filename patternTom Ryder2018-06-121-1/+1
| | | | Missing hostname
* Lots of extension to filetype.vimTom Ryder2018-06-111-70/+320
| | | | | More filetypes I care about, and some extension-stripping and sudoedit(8)-handling.
* Add .wgetrc Vim filetypeTom Ryder2018-06-111-0/+4
|
* Add crontab(5) Vim filetypeTom Ryder2018-06-111-0/+4
|
* Include .gvimrc patterns for vim filetypeTom Ryder2018-06-061-1/+1
|
* Add compatibility guard to filetype.vimTom Ryder2018-06-061-0/+3
|
* Add custom scripts.vimTom Ryder2018-06-061-52/+17
| | | | Including adding sed support
* Consolidate .vimrc and .vim/filetype.vimTom Ryder2018-06-061-0/+242
| | | | And add .vim/script.vim, to be composed in the next commit
* Implement personal filetype.vimTom Ryder2018-06-031-0/+11
This implements only the syntax highlighting for file types I regularly use and care about, implemented in the way I want them to work, with files named per type in ftdetect/*.vim. I have chosen only file types with which I regularly deal and for which syntax highlighting and filetype/indent plugins are actually useful. Most other files, e.g. system config files I edit infrequently and only with sudoedit(8), don't really benefit from that. Much of this is just copied from the distribution filetype.vim file, but some of it I do specifically in a way I want, such as the shell decision logic. We'll see how well this works.