blob: d9299d7eef0813bb9a8a211ad8d664273bf6e9f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
" Vim filetype detection file
" Language: Eselect Things
" Author: Elfyn McBratney <beu@gentoo.org>
" Copyright: Copyright (c) 2005 Elfyn McBratney
" Licence: You may redistribute this under the same terms as Vim itself
"
" This sets up syntax highlighting for Eselect modules.
"
if &compatible || v:version < 603
finish
endif
" eselect modules
au BufNewFile,BufRead *.eselect
\ set filetype=eselect
" vim: sw=4 ts=4 et fdm=marker
|