changed themes to tokyonight
This commit is contained in:
parent
7b6c664ceb
commit
f6408d9d47
5 changed files with 13 additions and 12 deletions
|
@ -40,7 +40,8 @@ bold-text-in-bright=yes
|
||||||
|
|
||||||
[main]
|
[main]
|
||||||
#include=~/.config/foot/themes/spacedust
|
#include=~/.config/foot/themes/spacedust
|
||||||
include=~/.config/foot/themes/nord
|
#include=~/.config/foot/themes/nord
|
||||||
|
include=~/.config/foot/themes/tokyonight
|
||||||
|
|
||||||
[environment]
|
[environment]
|
||||||
# name=value
|
# name=value
|
||||||
|
|
|
@ -13,12 +13,12 @@ vim.opt.cursorlineopt = "screenline" -- hightlight line only
|
||||||
vim.opt.termguicolors = true -- enables 24-bit color
|
vim.opt.termguicolors = true -- enables 24-bit color
|
||||||
vim.opt.splitbelow = true -- new horizontal splits go below
|
vim.opt.splitbelow = true -- new horizontal splits go below
|
||||||
vim.opt.splitright = true -- new vertical splits go right
|
vim.opt.splitright = true -- new vertical splits go right
|
||||||
vim.opt.background = "dark"
|
-- vim.opt.background = "dark"
|
||||||
|
|
||||||
-- nord theme options
|
-- nord theme options
|
||||||
vim.g.nord_contrast = true
|
--[[ vim.g.nord_contrast = true
|
||||||
vim.g.nord_borders = true
|
vim.g.nord_borders = true
|
||||||
vim.g.nord_disable_background = true
|
vim.g.nord_disable_background = true
|
||||||
vim.g.nord_italic = false
|
vim.g.nord_italic = false
|
||||||
vim.g.nord_uniform_diff_background = true
|
vim.g.nord_uniform_diff_background = true
|
||||||
vim.g.nord_bold = false
|
vim.g.nord_bold = false ]]
|
||||||
|
|
|
@ -5,7 +5,7 @@ return {
|
||||||
config = function()
|
config = function()
|
||||||
require('lualine').setup({
|
require('lualine').setup({
|
||||||
options = {
|
options = {
|
||||||
theme = 'nord',
|
theme = 'tokyonight',
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
return {
|
return {
|
||||||
-- the colorscheme should be available when starting neovim
|
-- the colorscheme should be available when starting neovim
|
||||||
{
|
{
|
||||||
--"folke/tokyonight.nvim",
|
"folke/tokyonight.nvim",
|
||||||
"shaunsingh/nord.nvim",
|
-- "shaunsingh/nord.nvim",
|
||||||
lazy = false, -- make sure we load this during the startup if its your main colorscheme
|
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
|
priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
config = function()
|
config = function()
|
||||||
-- load the colorscheme here
|
-- load the colorscheme here
|
||||||
--vim.cmd([[colorscheme tokyonight]])
|
vim.cmd([[colorscheme tokyonight]])
|
||||||
vim.cmd([[colorscheme nord]])
|
|
||||||
end,
|
end,
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,8 +68,9 @@ set -g status-keys vi
|
||||||
set -g @plugin 'tmux-plugins/tpm'
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||||
|
|
||||||
# Nord Theme Plugin
|
# Theme Plugin
|
||||||
set -g @plugin 'arcticicestudio/nord-tmux'
|
# set -g @plugin 'arcticicestudio/nord-tmux'
|
||||||
|
set -g @plugin 'cappyzawa/tmux-tokyonight'
|
||||||
|
|
||||||
# other examples:
|
# other examples:
|
||||||
# set -g @plugin 'github_username/plugin_name'
|
# set -g @plugin 'github_username/plugin_name'
|
||||||
|
|
Loading…
Reference in a new issue