diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index 7a042cd..de56594 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -333,15 +333,15 @@ [urgency_low] # IMPORTANT: colors have to be defined in quotation marks. # Otherwise the "#" and following would be interpreted as a comment. - background = "#1A1A22" - foreground = "#c8c093" + background = "#16181a" + foreground = "#ffffff" timeout = 10 # Icon for notifications with low urgency, uncomment to enable #default_icon = /path/to/icon [urgency_normal] - background = "#938AA9" - foreground = "#1A1A22" + background = "#5ea1ff" + foreground = "#16181a" timeout = 10 override_pause_level = 30 # Icon for notifications with normal urgency, uncomment to enable diff --git a/.config/nvim/lua/core/options.lua b/.config/nvim/lua/core/options.lua index 5c00d6d..bbbb800 100644 --- a/.config/nvim/lua/core/options.lua +++ b/.config/nvim/lua/core/options.lua @@ -50,7 +50,7 @@ vim.opt.updatetime = 50 -- Faster completion and CursorHold events (mill -- Visual Guides 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 vim.opt.formatoptions = 'tqj' -- t: auto-wrap text, q: format comments, j: remove comment leader when joining lines diff --git a/.config/nvim/lua/lazy-plugin-manager.lua b/.config/nvim/lua/lazy-plugin-manager.lua index d0c2162..aebdc74 100644 --- a/.config/nvim/lua/lazy-plugin-manager.lua +++ b/.config/nvim/lua/lazy-plugin-manager.lua @@ -21,5 +21,5 @@ require("lazy").setup({ change_detection = { notify = false, }, - colorscheme = "kanagawa", + colorscheme = "cyberdream", }) diff --git a/.config/nvim/lua/plugins/colorscheme.lua b/.config/nvim/lua/plugins/colorscheme.lua index cc8dffc..54b22af 100644 --- a/.config/nvim/lua/plugins/colorscheme.lua +++ b/.config/nvim/lua/plugins/colorscheme.lua @@ -1,34 +1,45 @@ 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 + }, } diff --git a/.config/nvim/lua/plugins/lualine.lua b/.config/nvim/lua/plugins/lualine.lua index 32064f4..56a67c7 100644 --- a/.config/nvim/lua/plugins/lualine.lua +++ b/.config/nvim/lua/plugins/lualine.lua @@ -19,7 +19,7 @@ return { lualine.setup({ options = { - theme = "kanagawa", + theme = "auto", component_separators = { left = "", right = "" }, section_separators = { left = "", right = "" }, globalstatus = true, diff --git a/.config/nvim/lua/plugins/telescope.lua b/.config/nvim/lua/plugins/telescope.lua index 43cfa4c..e95d877 100644 --- a/.config/nvim/lua/plugins/telescope.lua +++ b/.config/nvim/lua/plugins/telescope.lua @@ -35,6 +35,13 @@ return { 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({ defaults = { file_sorter = sorters.get_fzy_sorter, @@ -50,6 +57,12 @@ return { prompt_position = "top", }, + border = {}, + -- borderchars = { "─", "│", "─", "│", "╭", "╮", "╯", "╰" }, + borderchars = { " ", " ", " ", " ", " ", " ", " ", " " }, + use_less = true, + set_env = { ['COLORTERM'] = 'truecolor' }, + mappings = { i = { [""] = actions.move_selection_next, diff --git a/.config/tmux/plugins/catppuccin/tmux/themes/catppuccin_cyberdream_tmux.conf b/.config/tmux/plugins/catppuccin/tmux/themes/catppuccin_cyberdream_tmux.conf new file mode 100644 index 0000000..a475db7 --- /dev/null +++ b/.config/tmux/plugins/catppuccin/tmux/themes/catppuccin_cyberdream_tmux.conf @@ -0,0 +1,2035 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cyberdream.nvim/extras/tmux/cyberdream.conf at main · scottmckendry/cyberdream.nvim · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ Skip to content + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+ + + + + +
+ + + + + + + + + +
+
+
+ + + + + + + + + +
+ +
+ +
+ +
+ + + + / + + cyberdream.nvim + + + Public +
+ + +
+ +
+ + +
+
+ +
+
+ + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
+
+ + + + +
+ +
+ +
+
+ +
+ +
+

Footer

+ + + + +
+
+ + + + + © 2025 GitHub, Inc. + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+ + + diff --git a/.local/bin/dwm-autostart b/.local/bin/dwm-autostart index 1b86692..db7e848 100755 --- a/.local/bin/dwm-autostart +++ b/.local/bin/dwm-autostart @@ -3,7 +3,7 @@ dunst --config ~/.config/dunst/dunstrc & xautolock -time 10 -locker slock & unclutter & -hsetroot -solid "#1A1A22" +hsetroot -solid "#16181a" # ~/.local/bin/setbg # nohup /usr/lib/kdeconnectd >/dev/null 2>&1 & diff --git a/.tmux.conf b/.tmux.conf index 3299c54..ca29e0f 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -79,10 +79,15 @@ 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 '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 @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) run '~/.tmux/plugins/tpm/tpm'