First import

git-svn-id: http://photonzero.com/dotfiles/trunk@1 23f722f6-122a-0410-8cef-c75bd312dd78
This commit is contained in:
michener 2007-03-19 06:17:17 +00:00
commit 83d40113d2
60 changed files with 4264 additions and 0 deletions

23
.vim/syntax/motd.vim Normal file
View file

@ -0,0 +1,23 @@
" Vim syntax file
" Language: MotD Public
" Maintainer: David Bushong <david@bushong.net>
" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
if version < 600
syntax clear
elseif exists("b:current_syntax")
finish
endif
syn match motdSig "\(\s\s\+\|\t\)--\?.\+$\|\s--\?\w\+\s*$"
syn match motdThread "^\s\+\\[_-]"
syn match motdDate "^\d\+/\d\+\s"
syn match motdLink "https\?://\S\+"
hi link motdSig String
hi link motdThread Type
hi link motdDate Number
hi link motdLink Underlined
let b:current_syntax = "motd"