nvim/lua/plugins/dracula.lua
2025-04-14 15:27:11 -04:00

17 lines
337 B
Lua

return {
'Mofiqul/dracula.nvim',
opts = {
colors = {
bg = '#11111b',
fg = '#cdd6f4',
menu = '#11111b',
selection = '#45475a',
comment = '#9399b2',
},
overrides = {
CursorLine = { bg = '#1e1e2e' },
LineNr = { fg = '#45475a' },
TabLineSel = { bg = '#181825' },
},
},
}