aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect/perl.vim
Commit message (Collapse)AuthorAgeFilesLines
* Add explicit group to ftdetect ruleTom Ryder2018-07-101-1/+1
| | | | | This isn't strictly necessary, as it's sourced into the group from filetype.vim, but making it explicit appeases vint.
* Add extra Perl file detection rulesTom Ryder2018-07-091-0/+9
|
* Consolidate .vimrc and .vim/filetype.vimTom Ryder2018-06-061-9/+0
| | | | And add .vim/script.vim, to be composed in the next commit
* Refine shebangs in filetype detectionTom Ryder2018-06-031-1/+1
|
* Implement personal filetype.vimTom Ryder2018-06-031-0/+9
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.