Browse Source

feat: update colorscheme

master
Tovi Jaeschke-Rogers 6 days ago
parent
commit
8395f744dd
9 changed files with 2106 additions and 42 deletions
  1. +4
    -4
      .config/dunst/dunstrc
  2. +1
    -1
      .config/nvim/lua/core/options.lua
  3. +1
    -1
      .config/nvim/lua/lazy-plugin-manager.lua
  4. +42
    -31
      .config/nvim/lua/plugins/colorscheme.lua
  5. +1
    -1
      .config/nvim/lua/plugins/lualine.lua
  6. +13
    -0
      .config/nvim/lua/plugins/telescope.lua
  7. +2035
    -0
      .config/tmux/plugins/catppuccin/tmux/themes/catppuccin_cyberdream_tmux.conf
  8. +1
    -1
      .local/bin/dwm-autostart
  9. +8
    -3
      .tmux.conf

+ 4
- 4
.config/dunst/dunstrc View File

@ -333,15 +333,15 @@
[urgency_low] [urgency_low]
# IMPORTANT: colors have to be defined in quotation marks. # IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment. # Otherwise the "#" and following would be interpreted as a comment.
background = "#1A1A22"
foreground = "#c8c093"
background = "#16181a"
foreground = "#ffffff"
timeout = 10 timeout = 10
# Icon for notifications with low urgency, uncomment to enable # Icon for notifications with low urgency, uncomment to enable
#default_icon = /path/to/icon #default_icon = /path/to/icon
[urgency_normal] [urgency_normal]
background = "#938AA9"
foreground = "#1A1A22"
background = "#5ea1ff"
foreground = "#16181a"
timeout = 10 timeout = 10
override_pause_level = 30 override_pause_level = 30
# Icon for notifications with normal urgency, uncomment to enable # Icon for notifications with normal urgency, uncomment to enable


+ 1
- 1
.config/nvim/lua/core/options.lua View File

@ -50,7 +50,7 @@ vim.opt.updatetime = 50 -- Faster completion and CursorHold events (mill
-- Visual Guides -- Visual Guides
vim.opt.colorcolumn = "80" -- Show vertical line at column 80 vim.opt.colorcolumn = "80" -- Show vertical line at column 80
vim.opt.cursorline = true -- Highlight the current line
vim.opt.cursorline = false -- Highlight the current line
-- Text Formatting Options -- Text Formatting Options
vim.opt.formatoptions = 'tqj' -- t: auto-wrap text, q: format comments, j: remove comment leader when joining lines vim.opt.formatoptions = 'tqj' -- t: auto-wrap text, q: format comments, j: remove comment leader when joining lines


+ 1
- 1
.config/nvim/lua/lazy-plugin-manager.lua View File

@ -21,5 +21,5 @@ require("lazy").setup({
change_detection = { change_detection = {
notify = false, notify = false,
}, },
colorscheme = "kanagawa",
colorscheme = "cyberdream",
}) })

+ 42
- 31
.config/nvim/lua/plugins/colorscheme.lua View File

@ -1,34 +1,45 @@
return { return {
"rebelot/kanagawa.nvim",
priority = 1000,
config = function()
-- Default options:
require("kanagawa").setup({
compile = false, -- enable compiling the colorscheme
undercurl = true, -- enable undercurls
commentStyle = { italic = true },
functionStyle = {},
keywordStyle = { italic = true },
statementStyle = { bold = true },
typeStyle = {},
transparent = false, -- do not set background color
dimInactive = false, -- dim inactive window `:h hl-NormalNC`
terminalColors = true, -- define vim.g.terminal_color_{0,17}
colors = { -- add/modify theme and palette colors
palette = {},
theme = { wave = {}, lotus = {}, dragon = {}, all = {} },
},
overrides = function(colors) -- add/modify highlights
return {}
end,
theme = "wave", -- Load "wave" theme when 'background' option is not set
background = { -- map the value of 'background' option to a theme
dark = "wave", -- try "dragon" !
light = "lotus",
},
})
{
"rebelot/kanagawa.nvim",
enabled = false,
priority = 1000,
config = function()
-- Default options:
require("kanagawa").setup({
compile = false, -- enable compiling the colorscheme
undercurl = true, -- enable undercurls
commentStyle = { italic = true },
functionStyle = {},
keywordStyle = { italic = true },
statementStyle = { bold = true },
typeStyle = {},
transparent = false, -- do not set background color
dimInactive = false, -- dim inactive window `:h hl-NormalNC`
terminalColors = true, -- define vim.g.terminal_color_{0,17}
colors = { -- add/modify theme and palette colors
palette = {},
theme = { wave = {}, lotus = {}, dragon = {}, all = {} },
},
overrides = function(colors) -- add/modify highlights
return {}
end,
theme = "wave", -- Load "wave" theme when 'background' option is not set
background = { -- map the value of 'background' option to a theme
dark = "wave", -- try "dragon" !
light = "lotus",
},
})
-- setup must be called before loading
require("kanagawa").load("wave")
end,
-- setup must be called before loading
require("kanagawa").load("wave")
end,
},
{
"scottmckendry/cyberdream.nvim",
lazy = false,
priority = 1000,
config = function()
vim.cmd("colorscheme cyberdream")
end
},
} }

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

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


+ 13
- 0
.config/nvim/lua/plugins/telescope.lua View File

@ -35,6 +35,13 @@ return {
end) end)
end end
vim.api.nvim_set_hl(0, 'TelescopePromptBorder', { bg = 'none' })
vim.api.nvim_set_hl(0, 'TelescopeResultsBorder', { bg = 'none' })
vim.api.nvim_set_hl(0, 'TelescopePreviewBorder', { bg = 'none' })
vim.api.nvim_set_hl(0, 'TelescopePromptTitle', { bg = '#5ea1ff', fg = '#000000' })
vim.api.nvim_set_hl(0, 'TelescopeResultsTitle', { bg = '#bd5eff', fg = '#000000' })
vim.api.nvim_set_hl(0, 'TelescopePreviewTitle', { bg = '#5eff6c', fg = '#000000' })
telescope.setup({ telescope.setup({
defaults = { defaults = {
file_sorter = sorters.get_fzy_sorter, file_sorter = sorters.get_fzy_sorter,
@ -50,6 +57,12 @@ return {
prompt_position = "top", prompt_position = "top",
}, },
border = {},
-- borderchars = { "─", "│", "─", "│", "╭", "╮", "╯", "╰" },
borderchars = { " ", " ", " ", " ", " ", " ", " ", " " },
use_less = true,
set_env = { ['COLORTERM'] = 'truecolor' },
mappings = { mappings = {
i = { i = {
["<C-n>"] = actions.move_selection_next, ["<C-n>"] = actions.move_selection_next,


+ 2035
- 0
.config/tmux/plugins/catppuccin/tmux/themes/catppuccin_cyberdream_tmux.conf
File diff suppressed because it is too large
View File


+ 1
- 1
.local/bin/dwm-autostart View File

@ -3,7 +3,7 @@
dunst --config ~/.config/dunst/dunstrc & dunst --config ~/.config/dunst/dunstrc &
xautolock -time 10 -locker slock & xautolock -time 10 -locker slock &
unclutter & unclutter &
hsetroot -solid "#1A1A22"
hsetroot -solid "#16181a"
# ~/.local/bin/setbg # ~/.local/bin/setbg
# nohup /usr/lib/kdeconnectd >/dev/null 2>&1 & # nohup /usr/lib/kdeconnectd >/dev/null 2>&1 &


+ 8
- 3
.tmux.conf View File

@ -79,10 +79,15 @@ set -g @plugin 'tmux-plugins/tmux-sensible'
# set -g @plugin "janoamaral/tokyo-night-tmux" # set -g @plugin "janoamaral/tokyo-night-tmux"
# set -g @tokyo-night-tmux_window_id_style digital # 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 @kanagawa-ignore-window-colors true # set -g @kanagawa-ignore-window-colors true
set -g @plugin 'catppuccin/tmux#v2.1.3'
set -g @catppuccin_flavour "cyberdream"
run ~/.config/tmux/plugins/catppuccin/tmux/catppuccin.tmux
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm' run '~/.tmux/plugins/tpm/tpm'

Loading…
Cancel
Save