Darcula
install
If you use a plugin manager, follow the traditional way.
For example with vim-plug add this in .vimrc
/init.vim
:
Plug 'doums/darcula'
Then run in vim:
:source $MYVIMRC
:PlugInstall
If you use vim package :h packages
.
usage
Put this in your .vimrc
/init.vim
:
colorscheme darcula
To fully enjoy the color scheme and if your terminal supports Truecolor add
set termguicolors
If you use lightline:
let g:lightline = { 'colorscheme': 'darculaOriginal' }
NOTE: lightline already provides a "darcula" color scheme that I find simply bad. I strongly recommend to use mine instead (using darculaOriginal
instead of darcula
in the above config).
VimScript API
list
colors: [ truecolor: string
, 256color: number
]
truecolor: string
hexadecimal color with a #
prefix
256color: number
should be between 16-255
ANSI 256 color (useful for non truecolor terminals that do not support set termguicolors
)
dictionary
darcula#palette: { key: string
: value: colors
}
the colors palette of Darcula
function
darcula#Hi(group: string
, fg: colors
, bg: ?colors
, style: ?string
)
helper function to create highlight group
group: string
group name
fg: colors
foreground colors
bg: ?colors
background colors
style: ?string
text style (for possible values see :h bold
)
example:
call darcula#Hi('rustLifetime', darcula#palette.macroName, darcula#palette.bg, 'italic')
call darcula#Hi('Comment', [ '#eeeeee', 255 ], darcula#palette.null, 'italic')
call darcula#Hi('BlackFg', [ '#000000', 16 ])
helper groups
Darcula provides some helper groups.
You can use them with hi link
.
hi! link GitGutterAdd GitAddStripe
hi! link GitGutterChange GitChangeStripe
hi! link GitGutterDelete GitDeleteStripe
let g:gitgutter_sign_removed = '▶'
hi! link CocErrorSign ErrorSign
hi! link CocWarningSign WarningSign
hi! link CocInfoSign InfoSign
hi! link CocHintSign InfoSign
hi! link CocErrorFloat Pmenu
hi! link CocWarningFloat Pmenu
hi! link CocInfoFloat Pmenu
hi! link CocHintFloat Pmenu
hi! link CocHighlightText IdentifierUnderCaret
hi! link CocHighlightRead IdentifierUnderCaret
hi! link CocHighlightWrite IdentifierUnderCaretWrite
hi! link CocErrorHighlight CodeError
hi! link CocWarningHighlight CodeWarning
hi! link CocInfoHighlight CodeInfo
hi! link CocHintHighlight CodeHint
hi! link ALEError Error
hi! link ALEWarning CodeWarning
hi! link ALEInfo CodeInfo
hi! link ALEErrorSign ErrorSign
hi! link ALEWarningSign WarningSign
hi! link ALEInfoSign InfoSign
color support
- Truecolor
- 256 color
credits
JetBrains for the original and awsome Darcula color scheme!
license
Mozilla Public License 2.0