An open API service indexing awesome lists of open source software.

https://github.com/pmouraguedes/neodarcula.nvim

A discrete color theme - based on Intellij's default dark theme - with support for transparency, dimming, LSP, treesitter and other plugins.
https://github.com/pmouraguedes/neodarcula.nvim

colorcheme intellij neovim neovim-colorscheme neovim-lua neovim-lua-plugin neovim-plugin neovim-theme vim vim-colorscheme vim-theme

Last synced: 2 months ago
JSON representation

A discrete color theme - based on Intellij's default dark theme - with support for transparency, dimming, LSP, treesitter and other plugins.

Awesome Lists containing this project

README

          

# Neodarcula

A discrete color theme based on Intellij's default dark theme, with support for transparency, window dimming, LSP, treesitter, telescope and other plugins like [flash.nvim](https://github.com/folke/flash.nvim) and [eyeliner.nvim](https://github.com/jinh0/eyeliner.nvim).

## Examples

- [Jai](#jai)
- [Go](#go)
- [Java](#java)
- [C++](#c++)
- [Rust](#rust)
- [Odin](#odin)
- [Zig](#zig)
- [C3](#c3)

### Jai
Jai Image

### Go
Golang Image

### Java
Java Image

### C++
C++ Image

### Rust
Rust Image

### Odin
Odin Image

### Zig
Zig Image

### C3 (tree-sitter only, no LSP)
C3 Image

---

## 📦 Installation

```
{
"pmouraguedes/neodarcula.nvim",
lazy = false,
priority = 1000,
},
```

### Lazyvim example

```
return {
{
"pmouraguedes/neodarcula.nvim",
lazy = false,
priority = 1000,
opts = {
transparent = true, -- Enable transparent background
dim = true, -- Dim inactive windows with a black background
},
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "neodarcula",
},
},
}
```
## Configuration

Default Options

```
{
-- removes the background color, making it transparent.
transparent = false,
-- sets the background of inactive windows to black
dim = false,
}
```

## Requirements
This color scheme uses LSP Semantic tokens and Treesitter information, so it works better when these are enabled.

## Alternatives
- [xiantang/darcula-dark.nvim](https://github.com/xiantang/darcula-dark.nvim)
- [doums/darcula](https://github.com/doums/darcula)