😈 A Vim color scheme reproduction of the official JetBrains IDE Darcula theme
Follow the traditional way of your plugin manager
For example with vim-plug add this in .vimrc
Plug 'doums/darcula'
then run in vim
:source $MYVIMRC
:PlugInstall
put this in your .vimrc
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).
the palette is exposed through the dictionary darcula#palette
echo darcula#palette.comment
also if you really want to change some highlight groups you can use darcula#Hi()
function
" arguments: group, foreground, background, style
" you can omit the last two arguments
call darcula#Hi('rustLifetime', darcula#palette.macroName, darcula#palette.bg, 'italic')
- Truecolor
- 256 color
JetBrains for the original and awsome Darcula color scheme!
Mozilla Public License 2.0