aboutsummaryrefslogtreecommitdiff
path: root/.vim/colors/putty.vim
diff options
context:
space:
mode:
authorRyan Kavanagh <ryanakca@kubuntu.org>2011-08-14 17:16:55 -0400
committerRyan Kavanagh <ryanakca@kubuntu.org>2011-08-25 07:42:57 -0400
commit1c019761dfaf6be82de9284fa5e2b9dbfbdec27d (patch)
tree7ed6bd2f437d3a334bd7a81f62e6dfa63689272b /.vim/colors/putty.vim
Initial import
Diffstat (limited to '.vim/colors/putty.vim')
-rw-r--r--.vim/colors/putty.vim82
1 files changed, 82 insertions, 0 deletions
diff --git a/.vim/colors/putty.vim b/.vim/colors/putty.vim
new file mode 100644
index 0000000..4c86ad5
--- /dev/null
+++ b/.vim/colors/putty.vim
@@ -0,0 +1,82 @@
+" Vim color file
+" Maintainer: Prachya Boonkwan <kaamanita@hotmail.com>
+" Last Change: April 29, 2003
+" Licence: Public Domain
+
+" This package offers a eye-catching color scheme that resembles the
+" default color scheme of Putty telnet terminal.
+
+" First remove all existing highlighting.
+set background=dark
+hi clear
+if exists("syntax_on")
+ syntax reset
+endif
+
+let colors_name = "putty"
+
+hi Normal guifg=Grey guibg=Black
+
+hi ErrorMsg guibg=Red guifg=White
+hi IncSearch gui=reverse
+hi ModeMsg gui=bold
+hi StatusLine gui=reverse,bold
+hi StatusLineNC gui=reverse
+hi VertSplit gui=reverse
+hi Visual gui=reverse guifg=Grey guibg=fg
+hi VisualNOS gui=underline,bold
+hi DiffText gui=bold guibg=Red
+hi Cursor guibg=Green guifg=NONE
+hi lCursor guibg=Cyan guifg=NONE
+hi Directory guifg=Blue
+hi LineNr guifg=#BBBB00
+hi MoreMsg gui=bold guifg=SeaGreen
+hi NonText gui=bold guifg=Blue guibg=Black
+hi Question gui=bold guifg=SeaGreen
+hi Search guibg=#BBBB00 guifg=NONE
+hi SpecialKey guifg=Blue
+hi Title gui=bold guifg=Magenta
+hi WarningMsg guifg=Red
+hi WildMenu guibg=Cyan guifg=Black
+hi Folded guibg=White guifg=DarkBlue
+hi FoldColumn guibg=Grey guifg=DarkBlue
+hi DiffAdd guibg=LightBlue
+hi DiffChange guibg=LightMagenta
+hi DiffDelete gui=bold guifg=Blue guibg=LightCyan
+
+hi Comment guifg=Blue guibg=Black
+hi Constant guifg=#BB0000 guibg=Black
+hi PreProc guifg=#BB00BB guibg=Black
+hi Statement gui=NONE guifg=#BBBB00 guibg=Black
+hi Special guifg=#BB00BB guibg=Black
+hi Ignore guifg=Grey
+hi Identifier guifg=#00BBBB guibg=Black
+hi Type guifg=#00BB00 guibg=Black
+
+hi link IncSearch Visual
+hi link String Constant
+hi link Character Constant
+hi link Number Constant
+hi link Boolean Constant
+hi link Float Number
+hi link Function Identifier
+hi link Conditional Statement
+hi link Repeat Statement
+hi link Label Statement
+hi link Operator Statement
+hi link Keyword Statement
+hi link Exception Statement
+hi link Include PreProc
+hi link Define PreProc
+hi link Macro PreProc
+hi link PreCondit PreProc
+hi link StorageClass Type
+hi link Structure Type
+hi link Typedef Type
+hi link Tag Special
+hi link SpecialChar Special
+hi link Delimiter Special
+hi link SpecialComment Special
+hi link Debug Special
+
+" vim: sw=2