Skip to content

Commit

Permalink
created
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill Caputo committed Oct 19, 2010
0 parents commit 69d5fca
Show file tree
Hide file tree
Showing 19 changed files with 960 additions and 0 deletions.
Binary file added .custom.include.swp
Binary file not shown.
Empty file added README
Empty file.
2 changes: 2 additions & 0 deletions ben_rady/gvimrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source ~/.vimrc
source ~/.gvimrc.local
1 change: 1 addition & 0 deletions ben_rady/vim
1 change: 1 addition & 0 deletions ben_rady/vimrc
6 changes: 6 additions & 0 deletions gvimrc.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
set gfn=inconsolata\ 20
set lines=40
set columns=999
winpos 1600 25
nmap <silent> <leader>sg :so $MYGVIMRC<CR>

10 changes: 10 additions & 0 deletions map.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

#$1 = link directory $2 location of cloned profile
rm -f $1/vim
rm -f $1/vimrc

ln -s $2 $1/vim
ln -s $2/.vimrc $1/vimrc

ls -l $1
5 changes: 5 additions & 0 deletions mine/gvimrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
set filetype=vim tabstop=2 softtabstop=2 expandtab
set shiftwidth=2 shiftround textwidth=0 autoindent
colorscheme desert

source ~/.gvimrc.local
49 changes: 49 additions & 0 deletions mine/vim/colors/blackboard.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
" Vim color scheme
"
" Name: blackboard.vim
" Maintainer: Ben Wyrosdick <[email protected]>
" Last Change: 2 July 2008
" License: public domain
" Version: 1.1

set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif

let g:colors_name = "blackboard"

if has("gui_running")
"GUI Colors
highlight Normal guifg=White guibg=Black
highlight Cursor guifg=Black guibg=Yellow
highlight CursorLine guibg=#191E2F
highlight LineNr guibg=#222222 guifg=#888888
highlight Folded guifg=White

"General Colors
highlight Comment guifg=#AEAEAE
highlight Constant guifg=#CAFE1E
highlight Keyword guifg=#FFDE00
highlight String guifg=#00D42D
highlight Type guifg=#84A7C1
highlight Identifier guifg=#00D42D gui=NONE
highlight Function guifg=#FF5600 gui=NONE
highlight clear Search
highlight Search guibg=#1C3B79
highlight PreProc guifg=Grey

"Ruby Colors
highlight link rubyClass Keyword
highlight link rubyDefine Keyword
highlight link rubyConstant Type
highlight link rubySymbol Constant
highlight link rubyStringDelimiter rubyString
highlight link rubyInclude Keyword
highlight link rubyAttribute Keyword
highlight link rubyInstanceVariable Normal

"Rails Colors
highlight link railsMethod Type
end
212 changes: 212 additions & 0 deletions mine/vim/colors/ir_black.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,212 @@
" ir_black color scheme
" More at: http://blog.infinitered.com/entries/show/8


" ********************************************************************************
" Standard colors used in all ir_black themes:
" Note, x:x:x are RGB values
"
" normal: #f6f3e8
"
" string: #A8FF60 168:255:96
" string inner (punc, code, etc): #00A0A0 0:160:160
" number: #FF73FD 255:115:253
" comments: #7C7C7C 124:124:124
" keywords: #96CBFE 150:203:254
" operators: white
" class: #FFFFB6 255:255:182
" method declaration name: #FFD2A7 255:210:167
" regular expression: #E9C062 233:192:98
" regexp alternate: #FF8000 255:128:0
" regexp alternate 2: #B18A3D 177:138:61
" variable: #C6C5FE 198:197:254
"
" Misc colors:
" red color (used for whatever): #FF6C60 255:108:96
" light red: #FFB6B0 255:182:176
"
" brown: #E18964 good for special
"
" lightpurpleish: #FFCCFF
"
" Interface colors:
" background color: black
" cursor (where underscore is used): #FFA560 255:165:96
" cursor (where block is used): white
" visual selection: #1D1E2C
" current line: #151515 21:21:21
" search selection: #07281C 7:40:28
" line number: #3D3D3D 61:61:61


" ********************************************************************************
" The following are the preferred 16 colors for your terminal
" Colors Bright Colors
" Black #4E4E4E #7C7C7C
" Red #FF6C60 #FFB6B0
" Green #A8FF60 #CEFFAB
" Yellow #FFFFB6 #FFFFCB
" Blue #96CBFE #FFFFCB
" Magenta #FF73FD #FF9CFE
" Cyan #C6C5FE #DFDFFE
" White #EEEEEE #FFFFFF


" ********************************************************************************
set background=dark
hi clear

if exists("syntax_on")
syntax reset
endif

let colors_name = "ir_black"


"hi Example guifg=NONE guibg=NONE gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE

" General colors
hi Normal guifg=#f6f3e8 guibg=black gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
hi NonText guifg=#070707 guibg=black gui=NONE ctermfg=black ctermbg=NONE cterm=NONE

hi Cursor guifg=black guibg=white gui=NONE ctermfg=black ctermbg=white cterm=reverse
hi LineNr guifg=#3D3D3D guibg=black gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE

hi VertSplit guifg=#202020 guibg=#202020 gui=NONE ctermfg=darkgray ctermbg=darkgray cterm=NONE
hi StatusLine guifg=#CCCCCC guibg=#202020 gui=italic ctermfg=white ctermbg=darkgray cterm=NONE
hi StatusLineNC guifg=black guibg=#202020 gui=NONE ctermfg=blue ctermbg=darkgray cterm=NONE

hi Folded guifg=#a0a8b0 guibg=#384048 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
hi Title guifg=#f6f3e8 guibg=NONE gui=bold ctermfg=NONE ctermbg=NONE cterm=NONE
hi Visual guifg=NONE guibg=#262D51 gui=NONE ctermfg=NONE ctermbg=darkgray cterm=NONE

hi SpecialKey guifg=#808080 guibg=#343434 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE

hi WildMenu guifg=green guibg=yellow gui=NONE ctermfg=black ctermbg=yellow cterm=NONE
hi PmenuSbar guifg=black guibg=white gui=NONE ctermfg=black ctermbg=white cterm=NONE
"hi Ignore guifg=gray guibg=black gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE

hi Error guifg=NONE guibg=NONE gui=undercurl ctermfg=white ctermbg=red cterm=NONE guisp=#FF6C60 " undercurl color
hi ErrorMsg guifg=white guibg=#FF6C60 gui=BOLD ctermfg=white ctermbg=red cterm=NONE
hi WarningMsg guifg=white guibg=#FF6C60 gui=BOLD ctermfg=white ctermbg=red cterm=NONE

" Message displayed in lower left, such as --INSERT--
hi ModeMsg guifg=black guibg=#C6C5FE gui=BOLD ctermfg=black ctermbg=cyan cterm=BOLD

if version >= 700 " Vim 7.x specific colors
hi CursorLine guifg=NONE guibg=#121212 gui=NONE ctermfg=NONE ctermbg=NONE cterm=BOLD
hi CursorColumn guifg=NONE guibg=#121212 gui=NONE ctermfg=NONE ctermbg=NONE cterm=BOLD
hi MatchParen guifg=#f6f3e8 guibg=#857b6f gui=BOLD ctermfg=white ctermbg=darkgray cterm=NONE
hi Pmenu guifg=#f6f3e8 guibg=#444444 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
hi PmenuSel guifg=#000000 guibg=#cae682 gui=NONE ctermfg=NONE ctermbg=NONE cterm=NONE
hi Search guifg=NONE guibg=NONE gui=underline ctermfg=NONE ctermbg=NONE cterm=underline
endif

" Syntax highlighting
hi Comment guifg=#7C7C7C guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
hi String guifg=#A8FF60 guibg=NONE gui=NONE ctermfg=green ctermbg=NONE cterm=NONE
hi Number guifg=#FF73FD guibg=NONE gui=NONE ctermfg=magenta ctermbg=NONE cterm=NONE

hi Keyword guifg=#96CBFE guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
hi PreProc guifg=#96CBFE guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
hi Conditional guifg=#6699CC guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE " if else end

hi Todo guifg=#8f8f8f guibg=NONE gui=NONE ctermfg=red ctermbg=NONE cterm=NONE
hi Constant guifg=#99CC99 guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE

hi Identifier guifg=#C6C5FE guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
hi Function guifg=#FFD2A7 guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
hi Type guifg=#FFFFB6 guibg=NONE gui=NONE ctermfg=yellow ctermbg=NONE cterm=NONE
hi Statement guifg=#6699CC guibg=NONE gui=NONE ctermfg=lightblue ctermbg=NONE cterm=NONE

hi Special guifg=#E18964 guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE
hi Delimiter guifg=#00A0A0 guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
hi Operator guifg=white guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE

hi link Character Constant
hi link Boolean Constant
hi link Float Number
hi link Repeat Statement
hi link Label 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 SpecialComment Special
hi link Debug Special


" Special for Ruby
hi rubyRegexp guifg=#B18A3D guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
hi rubyRegexpDelimiter guifg=#FF8000 guibg=NONE gui=NONE ctermfg=brown ctermbg=NONE cterm=NONE
hi rubyEscape guifg=white guibg=NONE gui=NONE ctermfg=cyan ctermbg=NONE cterm=NONE
hi rubyInterpolationDelimiter guifg=#00A0A0 guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE
hi rubyControl guifg=#6699CC guibg=NONE gui=NONE ctermfg=blue ctermbg=NONE cterm=NONE "and break, etc
"hi rubyGlobalVariable guifg=#FFCCFF guibg=NONE gui=NONE ctermfg=lightblue ctermbg=NONE cterm=NONE "yield
hi rubyStringDelimiter guifg=#336633 guibg=NONE gui=NONE ctermfg=lightgreen ctermbg=NONE cterm=NONE
"rubyInclude
"rubySharpBang
"rubyAccess
"rubyPredefinedVariable
"rubyBoolean
"rubyClassVariable
"rubyBeginEnd
"rubyRepeatModifier
"hi link rubyArrayDelimiter Special " [ , , ]
"rubyCurlyBlock { , , }

hi link rubyClass Keyword
hi link rubyModule Keyword
hi link rubyKeyword Keyword
hi link rubyOperator Operator
hi link rubyIdentifier Identifier
hi link rubyInstanceVariable Identifier
hi link rubyGlobalVariable Identifier
hi link rubyClassVariable Identifier
hi link rubyConstant Type


" Special for Java
" hi link javaClassDecl Type
hi link javaScopeDecl Identifier
hi link javaCommentTitle javaDocSeeTag
hi link javaDocTags javaDocSeeTag
hi link javaDocParam javaDocSeeTag
hi link javaDocSeeTagParam javaDocSeeTag

hi javaDocSeeTag guifg=#CCCCCC guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
hi javaDocSeeTag guifg=#CCCCCC guibg=NONE gui=NONE ctermfg=darkgray ctermbg=NONE cterm=NONE
"hi javaClassDecl guifg=#CCFFCC guibg=NONE gui=NONE ctermfg=white ctermbg=NONE cterm=NONE


" Special for XML
hi link xmlTag Keyword
hi link xmlTagName Conditional
hi link xmlEndTag Identifier


" Special for HTML
hi link htmlTag Keyword
hi link htmlTagName Conditional
hi link htmlEndTag Identifier


" Special for Javascript
hi link javaScriptNumber Number


" Special for Python
"hi link pythonEscape Keyword


" Special for CSharp
hi link csXmlTag Keyword


" Special for PHP
67 changes: 67 additions & 0 deletions mine/vim/colors/railscasts.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
" Vim color scheme
"
" Name: railscast.vim
" Maintainer: Josh O'Rourke <[email protected]>
" Last Change: 17 Aug 2007
" License: public domain
" Version: 1.1
"
" This theme is based on the Railscasts Textmate theme [1]. I used
" Jo Vermeulen's "vibrantink" theme for Vim [2] as my template for
" creating this theme.
"
" [1] http://railscasts.com/about
" [2] http://www.vim.org/scripts/script.php?script_id=1794

set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif

let g:colors_name = "railscasts"

if has("gui_running")
hi link htmlTag xmlTag
hi link htmlTagName xmlTagName
hi link htmlEndTag xmlEndTag

highlight Normal guifg=#E6E1DC guibg=#2B2B2B
highlight Cursor guifg=#000000 guibg=#FFFFFF
"highlight CursorLine guibg=#323300

highlight Comment guifg=#BC9458 gui=italic
highlight Constant guifg=#6D9CBE
highlight Define guifg=#CC7833
highlight Error guifg=#FFFFFF guibg=#990000
highlight Function guifg=#FFC66D gui=NONE
highlight Identifier guifg=#6D9CBE gui=NONE
highlight Include guifg=#CC7833 gui=NONE
highlight Keyword guifg=#CC7833
highlight LineNr guifg=#2B2B2B guibg=#C0C0FF
highlight Number guifg=#A5C261
highlight PreProc guifg=#E6E1DC
highlight Search guibg=#FFFF00
highlight Statement guifg=#CC7833 gui=NONE
highlight String guifg=#A5C261
highlight Title guifg=#FFFFFF
highlight Type guifg=#DA4939 gui=NONE
highlight Visual guibg=#5A647E

highlight DiffAdd guifg=#E6E1DC guibg=#144212
highlight DiffDelete guifg=#E6E1DC guibg=#660000

highlight rubyBlockParameter guifg=#FFFFFF
highlight rubyClass guifg=#FFFFFF
highlight rubyConstant guifg=#DA4939
highlight rubyInstanceVariable guifg=#D0D0FF
highlight rubyInterpolation guifg=#519F50
highlight rubyLocalVariableOrMethod guifg=#D0D0FF
highlight rubyPredefinedConstant guifg=#DA4939
highlight rubyPseudoVariable guifg=#FFC66D
highlight rubyStringDelimiter guifg=#A5C261

highlight xmlTag guifg=#E8BF6A
highlight xmlTagName guifg=#E8BF6A
highlight xmlEndTag guifg=#E8BF6A
endif
Loading

0 comments on commit 69d5fca

Please sign in to comment.