use dracula theme in nvim

This commit is contained in:
Mark Riedesel 2024-09-24 13:08:30 -05:00
parent 42d31a8de1
commit 769cc49340
2 changed files with 4 additions and 2 deletions

View file

@ -1,7 +1,8 @@
return {
"Mofiqul/dracula.nvim",
cond = function ()
return vim.fn.executable('wal') == 0 -- if wal is unavailable, I'll use Dracula
return true
-- return vim.fn.executable('wal') == 0 -- if wal is unavailable, I'll use Dracula
end,
config = function ()
vim.cmd('colorscheme dracula')

View file

@ -21,7 +21,8 @@ end
return {
'AlphaTechnolog/pywal.nvim',
cond = function ()
return vim.fn.executable('wal') == 1
return false
-- return vim.fn.executable('wal') == 1
end,
config = function ()
vim.cmd('colorscheme pywal')