Browse Source

feat: change colorscheme

master
Tovi Jaeschke-Rogers 1 month ago
parent
commit
75aaeaa059
6 changed files with 57 additions and 11 deletions
  1. +1
    -1
      .config/alacritty/alacritty.toml
  2. +28
    -0
      .config/alacritty/themes/ayu_dark.toml
  3. +0
    -2
      .config/aliasrc
  4. +20
    -2
      .config/nvim/lua/tovi/plugins/colorscheme.lua
  5. +1
    -1
      .config/nvim/lua/tovi/plugins/lualine.lua
  6. +7
    -5
      .tmux.conf

+ 1
- 1
.config/alacritty/alacritty.toml View File

@ -1,5 +1,5 @@
import = [
"~/.config/alacritty/themes/tokyo-night.toml"
"~/.config/alacritty/themes/kanagawa_wave.toml"
]
[env]


+ 28
- 0
.config/alacritty/themes/ayu_dark.toml View File

@ -0,0 +1,28 @@
# Colors (Ayu Dark)
# Default colors
[colors.primary]
background = '#0A0E14'
foreground = '#B3B1AD'
# Normal colors
[colors.normal]
black = '#01060E'
red = '#EA6C73'
green = '#91B362'
yellow = '#F9AF4F'
blue = '#53BDFA'
magenta = '#FAE994'
cyan = '#90E1C6'
white = '#C7C7C7'
# Bright colors
[colors.bright]
black = '#686868'
red = '#F07178'
green = '#C2D94C'
yellow = '#FFB454'
blue = '#59C2FF'
magenta = '#FFEE99'
cyan = '#95E6CB'
white = '#FFFFFF'

+ 0
- 2
.config/aliasrc View File

@ -47,5 +47,3 @@ alias jack-phpunit="dce app-fpm ./vendor/bin/phpunit"
alias jack-subscription-artisan="dce subscription-fpm ./artisan"
alias jack-subscription-paratest="dce subscription-fpm ./test"
alias jack-subscription-phpunit="dce subscription-fpm ./vendor/bin/phpunit"
alias fd="fdfind"

+ 20
- 2
.config/nvim/lua/tovi/plugins/colorscheme.lua View File

@ -69,6 +69,7 @@ return {
{
"rebelot/kanagawa.nvim",
enabled = true,
priority = 1000 ,
config = function ()
-- Default options:
@ -98,16 +99,33 @@ return {
})
-- setup must be called before loading
-- vim.cmd("colorscheme kanagawa")
vim.cmd("colorscheme kanagawa")
end
},
{
"folke/tokyonight.nvim",
enabled = false,
lazy = false,
priority = 1000,
config = function ()
require('tokyonight').setup()
vim.cmd("colorscheme kanagawa")
vim.cmd("colorscheme tokyonight")
end
},
{
"Shatur/neovim-ayu",
enabled = false,
lazy = false,
priority = 1000,
config = function ()
require('ayu').setup({
mirage = false, -- Set to `true` to use `mirage` variant instead of `dark` for dark background.
terminal = true, -- Set to `false` to let terminal manage its own colors.
overrides = {},
})
vim.cmd("colorscheme ayu-dark")
end
}
}

+ 1
- 1
.config/nvim/lua/tovi/plugins/lualine.lua View File

@ -19,7 +19,7 @@ return {
lualine.setup({
options = {
theme = "tokyonight",
theme = "kanagawa",
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
globalstatus = true,


+ 7
- 5
.tmux.conf View File

@ -65,12 +65,14 @@ bind-key -r f run-shell "tmux neww ~/.local/bin/tmux-sessionizer"
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin "janoamaral/tokyo-night-tmux"
set -g @tokyo-night-tmux_window_id_style digital
# set -g @plugin "janoamaral/tokyo-night-tmux"
# set -g @tokyo-night-tmux_window_id_style digital
# set -g @plugin 'Nybkox/tmux-kanagawa'
# set -g @kanagawa-show-powerline true
# set -g @kanagawa-theme 'wave'
set -g @plugin 'Nybkox/tmux-kanagawa'
set -g @kanagawa-show-powerline true
set -g @kanagawa-theme 'wave'
# set -g @plugin 'jibingeo/tmux-colors-ayu'
# set -g @plugin 'egel/tmux-gruvbox'
# set -g @tmux-gruvbox 'dark' # or 'light'


Loading…
Cancel
Save