Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-06-26 | Refactor filetype-specific .vimrc material | Tom Ryder | 1 | -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. | |||||
2018-06-25 | Expand/fix messages filetype detection | Tom Ryder | 1 | -2/+2 | |
2018-06-23 | Add password filetype | Tom Ryder | 1 | -0/+6 | |
2018-06-23 | Add "gitrebase" Vim filetype | Tom Ryder | 1 | -0/+4 | |
2018-06-19 | Rearrange filetype.vim final stanzas | Tom Ryder | 1 | -3/+3 | |
2018-06-18 | Add fallback log filetype | Tom Ryder | 1 | -1/+5 | |
2018-06-18 | Correct a filetype.vim comment | Tom Ryder | 1 | -1/+1 | |
2018-06-15 | Fix comments in vim/filetype.vim | Tom Ryder | 1 | -2/+6 | |
2018-06-14 | Add Xresources filenames | Tom Ryder | 1 | -0/+2 | |
2018-06-14 | Add more names to Vim Bash types | Tom Ryder | 1 | -0/+4 | |
2018-06-13 | Refactor tilde and extension stripping | Tom Ryder | 1 | -36/+44 | |
2018-06-12 | Correct Mutt filename pattern | Tom Ryder | 1 | -1/+1 | |
Missing hostname | |||||
2018-06-11 | Lots of extension to filetype.vim | Tom Ryder | 1 | -70/+320 | |
More filetypes I care about, and some extension-stripping and sudoedit(8)-handling. | |||||
2018-06-11 | Add .wgetrc Vim filetype | Tom Ryder | 1 | -0/+4 | |
2018-06-11 | Add crontab(5) Vim filetype | Tom Ryder | 1 | -0/+4 | |
2018-06-06 | Include .gvimrc patterns for vim filetype | Tom Ryder | 1 | -1/+1 | |
2018-06-06 | Add compatibility guard to filetype.vim | Tom Ryder | 1 | -0/+3 | |
2018-06-06 | Add custom scripts.vim | Tom Ryder | 1 | -52/+17 | |
Including adding sed support | |||||
2018-06-06 | Consolidate .vimrc and .vim/filetype.vim | Tom Ryder | 1 | -0/+242 | |
And add .vim/script.vim, to be composed in the next commit | |||||
2018-06-03 | Implement personal filetype.vim | Tom Ryder | 1 | -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. |