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 {
|
||||
return
|
||||
{
|
||||
'nvim-lualine/lualine.nvim',
|
||||
dependencies = {
|
||||
'nvim-tree/nvim-web-devicons'
|
||||
},
|
||||
config = function()
|
||||
require('lualine').setup({
|
||||
opts = {
|
||||
options = {
|
||||
theme = 'dracula'
|
||||
}
|
||||
})
|
||||
end
|
||||
theme = vim.g.colors_name,
|
||||
refresh = {
|
||||
statusline = 1000,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue