https://github.com/blueshirts/darcula
VIM Darcula Theme
https://github.com/blueshirts/darcula
Last synced: 5 months ago
JSON representation
VIM Darcula Theme
- Host: GitHub
- URL: https://github.com/blueshirts/darcula
- Owner: blueshirts
- License: mit
- Created: 2014-12-12T04:48:45.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-05-23T22:03:50.000Z (almost 8 years ago)
- Last Synced: 2025-02-23T04:38:40.778Z (about 1 year ago)
- Language: Vim script
- Size: 836 KB
- Stars: 170
- Watchers: 8
- Forks: 39
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-vim - Darcula
README
# VIM Darcula Theme 1.7.3
Accurate Darcula color scheme for the VIM editor. Works well with CoffeeScript projects. Can be used in 256 color mode.
## What's New?
Updated the popup colors to be easier on the eyes.
## What it looks like...
### Using MacVim

### Using iTerm2 (256)

## Installation
### Janus: Vim Distribution
Darcula color support has now been added to the Janus Vim Distribution (https://github.com/carlhuda/janus). Follow the instructions for installing Janus and simply enable syntax highlighting by creating/updating your ~/.vimrc.after file.
.vimrc.after:
syntax enable
colorscheme darcula
### Manual Installation
- Copy darcula.vim into `~/.vim/colors/` (Unix) or `vimfiles/colors/` (Windows).
$ cp darcula/colors/darcula.vim ~/.vim/colors/
- Update your .vimrc file to enable highlighting.
.vimrc:
syntax enable
colorscheme darcula
## CoffeeScript Configuration
Add the following content to the `.vim/after/syntax/coffee/coffee.vim` file. This configuration is required with most
VIM CoffeeScript syntax highlighters in order to properly color the '@' (this) symbol.
hi clear coffeeParens
hi coffeeParens NONE
syn clear coffeeParens
hi clear coffeeSpecialIdent
hi coffeeSpecialIdent NONE
syn clear coffeeSpecialIdent
hi clear coffeeCurlies
hi coffeeCoffeeCurlies NONE
syn clear coffeeCurlies
" Highlight the this symbol.
syn match coffeeThis "\v\@"
hi def link coffeeThis Keyword