From f6408d9d47b0969f2d6907bbd9e4ae9a8947e5a0 Mon Sep 17 00:00:00 2001 From: MikeG Date: Sat, 14 Sep 2024 20:38:22 -0400 Subject: [PATCH] changed themes to tokyonight --- .config/foot/foot.ini | 3 ++- .config/nvim/lua/config/options.lua | 6 +++--- .config/nvim/lua/plugins/lualine.lua | 2 +- .config/nvim/lua/plugins/theme.lua | 9 ++++----- .config/tmux/tmux.conf | 5 +++-- 5 files changed, 13 insertions(+), 12 deletions(-) diff --git a/.config/foot/foot.ini b/.config/foot/foot.ini index f3231b4..9c98477 100644 --- a/.config/foot/foot.ini +++ b/.config/foot/foot.ini @@ -40,7 +40,8 @@ bold-text-in-bright=yes [main] #include=~/.config/foot/themes/spacedust -include=~/.config/foot/themes/nord +#include=~/.config/foot/themes/nord +include=~/.config/foot/themes/tokyonight [environment] # name=value diff --git a/.config/nvim/lua/config/options.lua b/.config/nvim/lua/config/options.lua index 450d61a..262e9cb 100644 --- a/.config/nvim/lua/config/options.lua +++ b/.config/nvim/lua/config/options.lua @@ -13,12 +13,12 @@ vim.opt.cursorlineopt = "screenline" -- hightlight line only vim.opt.termguicolors = true -- enables 24-bit color vim.opt.splitbelow = true -- new horizontal splits go below vim.opt.splitright = true -- new vertical splits go right -vim.opt.background = "dark" +-- vim.opt.background = "dark" -- nord theme options -vim.g.nord_contrast = true +--[[ vim.g.nord_contrast = true vim.g.nord_borders = true vim.g.nord_disable_background = true vim.g.nord_italic = false vim.g.nord_uniform_diff_background = true -vim.g.nord_bold = false +vim.g.nord_bold = false ]] diff --git a/.config/nvim/lua/plugins/lualine.lua b/.config/nvim/lua/plugins/lualine.lua index aaf3bcd..75a5352 100644 --- a/.config/nvim/lua/plugins/lualine.lua +++ b/.config/nvim/lua/plugins/lualine.lua @@ -5,7 +5,7 @@ return { config = function() require('lualine').setup({ options = { - theme = 'nord', + theme = 'tokyonight', }, }) end, diff --git a/.config/nvim/lua/plugins/theme.lua b/.config/nvim/lua/plugins/theme.lua index aa075b9..03bb50e 100644 --- a/.config/nvim/lua/plugins/theme.lua +++ b/.config/nvim/lua/plugins/theme.lua @@ -1,14 +1,13 @@ return { -- the colorscheme should be available when starting neovim { - --"folke/tokyonight.nvim", - "shaunsingh/nord.nvim", + "folke/tokyonight.nvim", + -- "shaunsingh/nord.nvim", lazy = false, -- make sure we load this during the startup if its your main colorscheme priority = 1000, -- make sure to load this before all the other start plugins config = function() -- load the colorscheme here - --vim.cmd([[colorscheme tokyonight]]) - vim.cmd([[colorscheme nord]]) + vim.cmd([[colorscheme tokyonight]]) end, - } + }, } diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 8caa77a..cef58db 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -68,8 +68,9 @@ set -g status-keys vi set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' -# Nord Theme Plugin -set -g @plugin 'arcticicestudio/nord-tmux' +# Theme Plugin +# set -g @plugin 'arcticicestudio/nord-tmux' +set -g @plugin 'cappyzawa/tmux-tokyonight' # other examples: # set -g @plugin 'github_username/plugin_name'