theme qt6

among other things..
This commit is contained in:
zack 2025-01-19 15:04:19 -05:00
parent 20108064de
commit 4cca1dc327
No known key found for this signature in database
GPG key ID: EE8A2B709E2401D1
16 changed files with 326 additions and 136 deletions

View file

@ -15,7 +15,7 @@ in {
config = mkIf cfg.enable {
programs.rofi = {
enable = true;
package = pkgs.rofi;
package = pkgs.rofi-wayland;
# Basic configuration
terminal = "kitty";

View file

@ -16,7 +16,7 @@ in {
# bold = mkStringOpt "JetBrainsMonoNL Nerd Font Mono ExtraBold" "Bold Font";
# italic = mkStringOpt "JetBrainsMonoNL Nerd Font Mono Bold Italic" "Italic Font";
# bold_italic = mkStringOpt "JetBrainsMonoNL Nerd Font Mono ExtraBold Italic" "Bold Italic Font";
normal = mkStringOpt "Iosevka" "Normal Font";
normal = mkStringOpt "Pragmata Pro Mono" "Normal Font";
bold = mkStringOpt "Iosevka ExtraBold" "Bold Font";
italic = mkStringOpt "Iosevka Bold Italic" "Italic Font";
bold_italic = mkStringOpt "Iosevka ExtraBold Italic" "Bold Italic Font";

View file

@ -41,7 +41,7 @@ in {
settings = {
window_padding_width = 12;
background_opacity = "0.8";
background_opacity = "0.9";
};
};
};

View file

@ -16,8 +16,8 @@ return {
preset = {
header = [[
l
l ~
l ~
f_,)
]],
},
@ -26,9 +26,12 @@ return {
},
{
"catppuccin",
opts = { integrations = {
blink_cmp = true,
} },
opts = {
transparent_background = true,
integrations = {
blink_cmp = true,
},
},
},
"f-person/git-blame.nvim",
{ "nvim-lualine/lualine.nvim", enabled = false },

View file

@ -35,7 +35,6 @@ in {
set-window-option -g pane-base-index 1
set-option -g renumber-windows on
set -g @catppuccin_flavor "mocha"
set -g @catppuccin_window_status_style "basic"
set -g default-terminal "tmux-256color"
set -g allow-passthrough on
@ -61,6 +60,22 @@ in {
bind -n M-H previous-window
bind -n M-L next-window
bind-key C-j display-popup -E "\
tmux list-sessions -F '#{session_name}' |\
fzf --reverse --header 'Switch sessions' |\
xargs tmux switch-client -t"
set-option -g destroy-unattached on
set-option -g exit-empty on
set-option -g exit-unattached on
set-hook -g after-new-session 'run-shell "tmux rename-session \"#{b:pane_current_path}\""'
set-hook -g after-new-window 'run-shell "tmux rename-session \"#{b:pane_current_path}\""'
set-hook -g after-kill-pane 'run-shell "tmux rename-session \"#{b:pane_current_path}\""'
set-hook -g pane-focus-in 'run-shell "tmux rename-session \"#{b:pane_current_path}\""'
'';
};
};