Skip to content
/ darcula Public
forked from doums/darcula

A Vim color scheme reproduction of the official JetBrains IDE Darcula theme

Notifications You must be signed in to change notification settings

ems-ja/darcula

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 

Repository files navigation

darcula

darcula

😈 A Vim color scheme reproduction of the official JetBrains IDE Darcula theme

install

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

usage

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).

API

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')

color support

  • Truecolor
  • 256 color

credits

JetBrains for the original and awsome Darcula color scheme!

license

Mozilla Public License 2.0

About

A Vim color scheme reproduction of the official JetBrains IDE Darcula theme

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vim Script 100.0%