Compare commits

...

2 Commits

Author SHA1 Message Date
cd73ea0859 Merge branch 'main' of ssh://192.168.10.50:30009/jacob/.dotfiles 2026-06-06 11:31:16 -04:00
d3e5e47c01 fix the shift+enter 2026-06-06 11:30:21 -04:00
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
font-family = "FiraCode Nerd Font Mono"
keybind = shift+return=text:\n
background-opacity = 0.8
command = "/usr/bin/zsh -c 'tmux attach || tmux'"
initial-command = "/usr/bin/zsh -c 'tmux attach || tmux'"
keybind = shift+enter=text:\n

View File

@@ -1,6 +1,6 @@
#!/usr/bin/bash -e
branch=$(git status|head -1|cut -f3 -d\ )
git checkout main
git checkout $(git_main_branch)
git pull
git checkout "$branch"
git merge main
git merge $(git_main_branch)