Skip to content

Commit

Permalink
improving syntax highlighting and adding some leader mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanb committed Mar 3, 2010
1 parent fa90385 commit 0ec87e8
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 98 deletions.
7 changes: 5 additions & 2 deletions gemrc
@@ -1,9 +1,12 @@
---
:benchmark: false
:verbose: true
gem: --no-ri --no-rdoc
:update_sources: true
gem: --no-ri --no-rdoc
gemcutter_key: f95a3c51e2c05faf8c5c3f3268b04eb1
:sources:
- http://gemcutter.org
- http://gems.rubyforge.org
- http://gems.github.com
:backtrace: false
:bulk_threshold: 1000
:benchmark: false
164 changes: 68 additions & 96 deletions vim/colors/railscasts.vim
@@ -1,14 +1,8 @@
" Vim color scheme
" Vim color scheme based on http://github.com/jpo/vim-railscasts-theme
"
" Name: railscast.vim
" Maintainer: Josh O'Rourke <jorourke23@gmail.com>
" License: public domain
"
" A GUI Only port of the RailsCasts TextMate theme [1] to Vim.
" Some parts of this theme were borrowed from the well-documented Lucius theme [2].
"
" [1] http://railscasts.com/about
" [2] http://www.vim.org/scripts/script.php?script_id=2536
" Name: railscasts.vim
" Maintainer: Ryan Bates
" License: MIT

set background=dark
hi clear
Expand All @@ -18,107 +12,85 @@ endif
let g:colors_name = "railscasts"

" Colors
" Brown #BC9458
" Dark Blue #6D9CBE
" Dark Green #519F50
" Dark Orange #CC7833
" Light Blue #D0D0FF
" Light Green #A5C261
" Brown #BC9357
" Dark Blue #6D9CBD
" Dark Green #509E50
" Dark Orange #CC7733
" Light Blue #CFCFFF
" Light Green #A5C160
" Tan #FFC66D
" Red #DA4938

hi Normal guifg=#E6E1DC guibg=#2B2B2B
hi Cursor guibg=#FFFFFF
hi CursorLine guibg=#333435
hi LineNr guifg=#666666
hi Search guibg=#5A647E
hi Visual guibg=#5A647E

" Folds
" -----
" line used for closed folds
hi Folded guifg=#F6F3E8 guibg=#444444 gui=NONE

" Misc
" ----
" directory names and other special names in listings
hi Directory guifg=#A5C261 gui=NONE

" Popup Menu
" ----------
" normal item in popup
hi Pmenu guifg=#F6F3E8 guibg=#444444 gui=NONE
" selected item in popup
hi PmenuSel guifg=#000000 guibg=#A5C261 gui=NONE
" scrollbar in popup
hi PMenuSbar guibg=#5A647E gui=NONE
" thumb of the scrollbar in the popup
hi PMenuThumb guibg=#AAAAAA gui=NONE

hi Normal guifg=#E6E1DC guibg=#232323
hi Cursor guibg=#FFFFFF
hi CursorLine guibg=#333435
hi LineNr guifg=#666666
hi Visual guibg=#5A647E
hi Search guifg=NONE guibg=#131313 gui=NONE
hi Folded guifg=#F6F3E8 guibg=#444444 gui=NONE
hi Directory guifg=#A5C160 gui=NONE
hi Error guifg=#FFFFFF guibg=#990000
hi MatchParen guifg=NONE guibg=#131313

"rubyComment
hi Comment guifg=#BC9458 gui=italic
hi Todo guifg=#BC9458 guibg=NONE gui=italic
hi Comment guifg=#BC9357 guibg=NONE gui=italic
hi! link Todo Comment

"rubyPseudoVariable
"nil, self, symbols, etc
hi Constant guifg=#6D9CBE
hi String guifg=#A5C160
hi! link Number String
hi! link rubyStringDelimiter String

"rubyClass, rubyModule, rubyDefine
"def, end, include, etc
hi Define guifg=#CC7833
" nil, self, symbols
hi Constant guifg=#6D9CBD

"rubyInterpolation
hi Delimiter guifg=#519F50
" def, end, include, load, require, alias, super, yield, lambda, proc
hi Define guifg=#CC7733 gui=NONE
hi! link Include Define
hi! link Keyword Define
hi! link Macro Define

"rubyError, rubyInvalidVariable
hi Error guifg=#FFFFFF guibg=#990000
" #{foo}, <%= bar %>
hi Delimiter guifg=#509E50
" hi erubyDelimiter guifg=NONE

"rubyFunction
hi Function guifg=#FFC66D gui=NONE
" function name (after def)
hi Function guifg=#FFC66D gui=NONE

"rubyIdentifier
"@var, @@var, $var, etc
hi Identifier guifg=#D0D0FF gui=NONE

"rubyInclude
"include, autoload, extend, load, require
hi Include guifg=#CC7833 gui=NONE

"rubyKeyword, rubyKeywordAsMethod
"alias, undef, super, yield, callcc, caller, lambda, proc
hi Keyword guifg=#CC7833

" same as define
hi Macro guifg=#CC7833 gui=NONE

"rubyInteger
hi Number guifg=#A5C261
"@var, @@var, $var
hi Identifier guifg=#CFCFFF gui=NONE

" #if, #else, #endif
hi PreCondit guifg=#CC7833 gui=NONE

" generic preprocessor
hi PreProc guifg=#CC7833 gui=NONE

"rubyControl, rubyAccess, rubyEval
"case, begin, do, for, if unless, while, until else, etc.
hi Statement guifg=#CC7833 gui=NONE
" case, begin, do, for, if, unless, while, until, else
hi Statement guifg=#CC7733 gui=NONE
hi! link PreProc Statement
hi! link PreCondit Statement

"rubyString
hi String guifg=#A5C261
" SomeClassName
hi Type guifg=NONE gui=NONE

hi Title guifg=#FFFFFF
" has_many, respond_to, params
hi railsMethod guifg=#DA4938 gui=NONE

"rubyConstant
hi Type guifg=#DA4939 gui=NONE
hi DiffAdd guifg=#E6E1DC guibg=#144212
hi DiffDelete guifg=#E6E1DC guibg=#660000

hi DiffAdd guifg=#E6E1DC guibg=#144212
hi DiffDelete guifg=#E6E1DC guibg=#660000
hi xmlTag guifg=#E8BF6A
hi! link xmlTagName xmlTag
hi! link xmlEndTag xmlTag
hi! link xmlArg xmlTag
hi! link htmlTag xmlTag
hi! link htmlTagName xmlTagName
hi! link htmlEndTag xmlEndTag
hi! link htmlArg xmlArg

hi link htmlTag xmlTag
hi link htmlTagName xmlTagName
hi link htmlEndTag xmlEndTag
" Popup Menu
" ----------
" normal item in popup
hi Pmenu guifg=#F6F3E8 guibg=#444444 gui=NONE
" selected item in popup
hi PmenuSel guifg=#000000 guibg=#A5C160 gui=NONE
" scrollbar in popup
hi PMenuSbar guibg=#5A647E gui=NONE
" thumb of the scrollbar in the popup
hi PMenuThumb guibg=#AAAAAA gui=NONE

hi xmlTag guifg=#E8BF6A
hi xmlTagName guifg=#E8BF6A
hi xmlEndTag guifg=#E8BF6A
6 changes: 6 additions & 0 deletions vimrc
Expand Up @@ -110,6 +110,10 @@ map <Leader>e :e <C-R>=expand("%:p:h") . "/" <CR>
" Normal mode: <Leader>t
map <Leader>te :tabe <C-R>=expand("%:p:h") . "/" <CR>
" Move lines up and down
map <Leader>> :m +1 <CR>
map <Leader>< :m -2 <CR>
" Inserts the path of the currently edited file into a command
" Command mode: Ctrl+P
cmap <C-P> <C-R>=expand("%:p:h") . "/" <CR>
Expand Down Expand Up @@ -175,3 +179,5 @@ set smartcase

" Tags
let g:Tlist_Ctags_Cmd="ctags --exclude='*.js'"

let g:fuf_splitPathMatching=1

0 comments on commit 0ec87e8

Please sign in to comment.