mirror of
https://github.com/maxmx03/dracula.nvim.git
synced 2026-09-10 07:26:19 -04:00
52 lines
1.1 KiB
Markdown
52 lines
1.1 KiB
Markdown
# Dracula
|
|
|
|
> Created with [schemecraft](https://github.com/maxmx03/schemecraft)
|
|
|
|

|
|
|
|
## Installation
|
|
|
|
To install Dracula, you need a plugin manager.
|
|
In the example, bellow we are going to use vim-plug.
|
|
|
|
```vim
|
|
Plug 'maxmx03/dracula.nvim', { 'branch': 'vim' }
|
|
colorscheme dracula
|
|
colorscheme dracula-soft
|
|
```
|
|
|
|
## Transparency
|
|
|
|
```vim
|
|
let g:dracula_transparency = 1
|
|
```
|
|
|
|
## Plugins
|
|
|
|
Bellow are the Dracula-Soft supported plugins.
|
|
Enable the plugins you want.
|
|
|
|
```vim
|
|
let g:dracula_treesitter = 1
|
|
let g:dracula_lspconfig = 1
|
|
let g:dracula_navic = 1
|
|
let g:dracula_cmp = 1
|
|
let g:dracula_ibl = 1
|
|
let g:dracula_bufferline = 1
|
|
let g:dracula_neotree = 1
|
|
let g:dracula_nvimtree = 1
|
|
let g:dracula_whichkey = 1
|
|
let g:dracula_dashboard = 1
|
|
let g:dracula_gitsigns = 1
|
|
let g:dracula_neogit = 1
|
|
let g:dracula_todocomments = 1
|
|
let g:dracula_lazy = 1
|
|
let g:dracula_telescope = 1
|
|
let g:dracula_noice = 1
|
|
let g:dracula_hop = 1
|
|
let g:dracula_ministatusline = 1
|
|
let g:dracula_minitabline = 1
|
|
let g:dracula_ministarter = 1
|
|
let g:dracula_minicursorword = 1
|
|
```
|