clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix foot and aliases

sspaeti 32f639f7 f7a1ad6a

+48 -6
+1 -1
foot/.config/foot/foot.ini
··· 42 42 # Hide cursor immediately when typing (kitty: mouse_hide_wait 0) 43 43 hide-when-typing=yes 44 44 45 - [colors] 45 + [colors-dark] 46 46 # Background opacity (kitty: background_opacity 0.98) 47 47 #alpha=0.98 48 48
+1 -1
foot/.config/foot/themes/foot.conf
··· 1 - [colors] 1 + [colors-dark] 2 2 foreground=ddf7ff 3 3 background=0B0C16 4 4 selection-foreground=0B0C16
+1 -1
foot/.config/foot/themes/foot.conf.tpl
··· 1 - [colors] 1 + [colors-dark] 2 2 foreground={{ foreground_strip }} 3 3 background={{ background_strip }} 4 4 selection-foreground={{ selection_foreground_strip }}
+1 -1
foot/.config/foot/themes/kanagawa
··· 2 2 # Kanagawa 3 3 # Ported from https://github.com/rebelot/kanagawa.nvim/ 4 4 5 - [colors] 5 + [colors-dark] 6 6 background=1F1F28 7 7 foreground=DCD7BA 8 8 cursor=1F1F28 C8C093
+1 -1
foot/.config/foot/themes/kanagawa-paper
··· 2 2 # Kanagawa Paper 3 3 # Ported from https://github.com/sho-87/kanagawa-paper.nvim 4 4 5 - [colors] 5 + [colors-dark] 6 6 background=1F1F28 7 7 foreground=DCD7BA 8 8 cursor=1F1F28 c8c093
+39
zsh/.dotfiles/zsh/aliases.shrc
··· 82 82 alias gcl='git clone' 83 83 alias gt='vim -c ":DiffviewOpen"' --diff current changes 84 84 # alias gtb = '! args=$@; shift $#; nvim -c \"DiffviewOpen $args\"' 85 + # 86 + # Start: Omarchy 87 + # Create a new worktree and branch from within current git directory. 88 + gw() { 89 + if [[ -z "$1" ]]; then 90 + echo "Usage: ga [branch name]" 91 + return 1 92 + fi 93 + 94 + local branch="$1" 95 + local base="$(basename "$PWD")" 96 + local wt_path="../${base}--${branch}" 97 + 98 + git worktree add -b "$branch" "$wt_path" 99 + mise trust "$wt_path" 100 + cd "$wt_path" 101 + } 102 + 103 + # Remove worktree and branch from within active worktree directory. 104 + gwd() { 105 + if gum confirm "Remove worktree and branch?"; then 106 + local cwd base branch root worktree 107 + 108 + cwd="$(pwd)" 109 + worktree="$(basename "$cwd")" 110 + 111 + # split on first `--` 112 + root="${worktree%%--*}" 113 + branch="${worktree#*--}" 114 + 115 + # Protect against accidentally nuking a non-worktree directory 116 + if [[ "$root" != "$worktree" ]]; then 117 + cd "../$root" 118 + git worktree remove "$cwd" --force || return 1 119 + git branch -D "$branch" 120 + fi 121 + fi 122 + } 123 + # End: Omarchy 85 124 86 125 #kuberentes 87 126 alias k=kubectl
+4 -1
zsh/.dotfiles/zsh/omarchy.shrc
··· 1 1 2 - source ~/.local/share/omarchy/default/bash/functions 2 + # Source omarchy bash functions except worktrees (conflicts with git aliases) 3 + for f in ~/.local/share/omarchy/default/bash/fns/*; do 4 + [[ "$(basename "$f")" != "worktrees" ]] && source "$f" 5 + done 3 6 # source ~/.local/share/omarchy/default/bash/init