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,
},
},
},
}

View file

@ -31,12 +31,14 @@ set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin "janoamaral/tokyo-night-tmux"
# Tokyo Night Customize
set -g @tokyo-night-tmux_window_id_style digital
set -g @tokyo-night-tmux_window_id_style dsquare
set -g @tokyo-night-tmux_pane_id_style hsquare
set -g @tokyo-night-tmux_zoom_id_style dsquare
set -g @tokyo-night-tmux_show_datetime 1
set -g @tokyo-night-tmux_date_format DMY
set -g @tokyo-night-tmux_time_format 24H
set -g @tokyo-night-tmux_show_netspeed 1
set -g @tokyo-night-tmux_netspeed_iface "eth0"
# Initialize TMUX plugin manager
run '~/.tmux/plugins/tpm/tpm'