This repository was archived by the owner on May 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
Copy pathmotus.vim
66 lines (55 loc) · 2.31 KB
/
motus.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
" Vim color file
" Dark (grey on black) color scheme based on on a popular torte config.
" Maintainer: Sergei Matusevich <[email protected]>
" ICQ: 31114346 Yahoo: motus2
" http://motus.kiev.ua/motus2/Files/motus.vim
" Last Change: 3 November 2005
" Orinal torte screme maintainer: Thorsten Maerz <[email protected]>
" Licence: Public Domain
" INSTALLATION: copy this file to ~/.vim/colors/ directory
" and add "colorscheme motus" to your ~/.vimrc file
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
"colorscheme default
let g:colors_name = "motus"
" hardcoded colors :
" GUI Comment : #80a0ff = Light blue
" GUI
highlight Normal guifg=Grey80 guibg=Black
highlight Search guifg=Grey guibg=DarkBlue
highlight Visual guifg=Black guibg=DarkGrey gui=NONE
" highlight Cursor guifg=Black guibg=Green gui=bold
highlight Special guifg=Orange
highlight Comment guifg=#80a0ff
highlight Statement guifg=Yellow gui=NONE
highlight Type gui=NONE
highlight VertSplit gui=bold guifg=Grey25 guibg=Black
highlight StatusLine gui=bold guifg=White guibg=Grey25
highlight StatusLineNC gui=NONE guifg=LightGrey guibg=Grey25
highlight FoldColumn gui=bold guifg=White guibg=Black
" Console
highlight Normal ctermfg=LightGrey ctermbg=Black
highlight Search ctermfg=Grey ctermbg=DarkBlue cterm=NONE
highlight Visual cterm=reverse
" highlight Cursor ctermfg=Black ctermbg=Green cterm=bold
highlight Special ctermfg=Brown
highlight Comment ctermfg=Blue
highlight Statement ctermfg=Yellow cterm=NONE
highlight Type cterm=NONE
highlight VertSplit ctermfg=DarkGrey ctermbg=Black cterm=bold
highlight StatusLine ctermfg=White ctermbg=Grey cterm=bold
highlight StatusLineNC ctermfg=Black ctermbg=Grey cterm=NONE
highlight FoldColumn ctermbg=Black ctermfg=White cterm=bold
" only for vim 5
if has("unix")
if v:version<600
highlight Normal ctermfg=Grey ctermbg=Black cterm=NONE guifg=Grey80 guibg=Black gui=NONE
highlight Search ctermfg=Black ctermbg=Red cterm=bold guifg=Black guibg=Red gui=bold
highlight Visual ctermfg=Black ctermbg=yellow cterm=bold guifg=Grey25 gui=bold
highlight Special ctermfg=LightBlue cterm=NONE guifg=LightBlue gui=NONE
highlight Comment ctermfg=Cyan cterm=NONE guifg=LightBlue gui=NONE
endif
endif