Fixes #1 switched theme
This commit is contained in:
parent
a54e166304
commit
d332337f07
3 changed files with 35 additions and 18 deletions
|
@ -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
|
||||
},
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue