Skip to content

Commit

Permalink
Add dracula theme
Browse files Browse the repository at this point in the history
  • Loading branch information
cschindlbeck committed Oct 3, 2024
1 parent 879399d commit 765b2fc
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
9 changes: 9 additions & 0 deletions lazyvim.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extras": [

],
"news": {
"NEWS.md": "6520"
},
"version": 6
}
16 changes: 15 additions & 1 deletion lua/plugins/colorscheme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,20 @@ local nord = {
end,
}

-- Dracula theme
local dracula = {
-- add dracula
{ "Mofiqul/dracula.nvim" },

-- Configure LazyVim to load dracula
{
"LazyVim/LazyVim",
opts = {
colorscheme = "dracula",
},
},
}

-- VSCode theme
local vscode = {
"Mofiqul/vscode.nvim",
Expand Down Expand Up @@ -57,4 +71,4 @@ local vscode = {
end,
}

return vscode
return dracula

0 comments on commit 765b2fc

Please sign in to comment.