changed themes to tokyonight

This commit is contained in:
Mike G 2024-09-14 20:38:22 -04:00
parent 7b6c664ceb
commit f6408d9d47
5 changed files with 13 additions and 12 deletions

View file

@ -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

View file

@ -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 ]]

View file

@ -5,7 +5,7 @@ return {
config = function()
require('lualine').setup({
options = {
theme = 'nord',
theme = 'tokyonight',
},
})
end,

View file

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

View file

@ -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'