This commit is contained in:
alex wiesner
2026-04-09 11:31:06 +01:00
parent 8fec8e28f4
commit 18245c778e
155 changed files with 16206 additions and 2980 deletions

View File

@@ -3,6 +3,3 @@ if status is-interactive
end
fish_config theme choose "Catppuccin Mocha" --color-theme=dark
# Added by codebase-memory-mcp install
export PATH="/home/alex/dotfiles/.local/bin:$PATH"

View File

@@ -1,5 +1,6 @@
# This file contains fish universal variable definitions.
# VERSION: 3.0
SETUVAR OPENCODE_ENABLE_EXA:1
SETUVAR __fish_initialized:4300
SETUVAR _fisher_catppuccin_2F_fish_files:\x7e/\x2econfig/fish/themes/Catppuccin\x20Frappe\x2etheme\x1e\x7e/\x2econfig/fish/themes/Catppuccin\x20Macchiato\x2etheme\x1e\x7e/\x2econfig/fish/themes/Catppuccin\x20Mocha\x2etheme\x1e\x7e/\x2econfig/fish/themes/static
SETUVAR _fisher_jorgebucaran_2F_fisher_files:\x7e/\x2econfig/fish/functions/fisher\x2efish\x1e\x7e/\x2econfig/fish/completions/fisher\x2efish

View File

@@ -1,9 +0,0 @@
function c --wraps=opencode --description 'opencode (auto-starts tmux for visual subagent panes)'
set -l port (python -c 'import socket; s=socket.socket(); s.bind(("127.0.0.1", 0)); print(s.getsockname()[1]); s.close()')
if not set -q TMUX
tmux new-session opencode --port $port $argv
else
opencode --port $port $argv
end
end

View File

@@ -1,9 +0,0 @@
function cc --wraps='opencode --continue' --description 'opencode --continue (auto-starts tmux for visual subagent panes)'
set -l port (python -c 'import socket; s=socket.socket(); s.bind(("127.0.0.1", 0)); print(s.getsockname()[1]); s.close()')
if not set -q TMUX
tmux new-session opencode --port $port --continue $argv
else
opencode --port $port --continue $argv
end
end