Fixes #1 switched theme

This commit is contained in:
Philipp 2024-07-17 19:11:25 +02:00
parent a54e166304
commit d332337f07
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750
3 changed files with 35 additions and 18 deletions

View file

@ -1,8 +1,24 @@
return {
{ "Mofiqul/dracula.nvim" },
{ "LazyVim/LazyVim",
opts = {
colorscheme = "dracula",
},
{
'maxmx03/dracula.nvim',
lazy = false,
priority = 1000,
config = function ()
local dracula = require "dracula"
dracula.setup({
transparent = false,
plugins = {
["nvim-treesitter"] = true,
["nvim-lspconfig"] = true,
["nvim-cmp"] = true,
["neo-tree.nvim"] = true,
["gitsigns.nvim"] = true,
["lazy.nvim"] = true,
["telescope.nvim"] = true,
}
})
vim.cmd.colorscheme 'dracula'
end
},
}

View file

@ -1,13 +1,12 @@
return {
'nvim-lualine/lualine.nvim',
dependencies = {
'nvim-tree/nvim-web-devicons'
},
config = function()
require('lualine').setup({
return
{
'nvim-lualine/lualine.nvim',
opts = {
options = {
theme = 'dracula'
}
})
end
}
theme = vim.g.colors_name,
refresh = {
statusline = 1000,
},
},
},
}