diff --git a/.config/sway/config b/.config/sway/config index 4b0215f..25a2b32 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -61,10 +61,10 @@ client.background $base # Gaps and borders gaps inner 4 gaps outer 10 -default_border normal 4 -default_floating_border normal 4 +default_border normal 2 +default_floating_border normal 2 -#font pango:"JetBrainsMono Nerd Font" Normal 14 +font pango:"JetBrainsMono Nerd Font" Normal 10 # Status bar bar { @@ -250,16 +250,16 @@ bindsym $mod+Shift+f4 move container to workspace number 8 bindsym $mod+escape kill # Move focus -bindsym $mod+a focus left -bindsym $mod+s focus down -bindsym $mod+w focus up -bindsym $mod+d focus right +bindsym $mod+h focus left +bindsym $mod+j focus down +bindsym $mod+k focus up +bindsym $mod+l focus right # Move window -bindsym $mod+Shift+a move left -bindsym $mod+Shift+s move down -bindsym $mod+Shift+w move up -bindsym $mod+Shift+d move right +bindsym $mod+Shift+h move left +bindsym $mod+Shift+j move down +bindsym $mod+Shift+k move up +bindsym $mod+Shift+l move right bindsym $mod+Shift+f floating toggle diff --git a/.zshrc b/.zshrc index d9e5461..2cc8d5e 100644 --- a/.zshrc +++ b/.zshrc @@ -19,4 +19,6 @@ eval "$(starship init zsh)" export PATH=~/.npm-global/bin:~/.local/bin:$PATH export SSH_AUTH_SOCK=/home/pmcc/.bitwarden-ssh-agent.sock -alias claude="/home/pmcc/.claude/local/claude" \ No newline at end of file +for file in ~/.config/zsh/*.zsh; do + [ -r "$file" ] && source "$file" +done