Compare commits

6 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
b44925b2df shift+enter in ghostty 2026-06-06 11:05:58 -04:00
Jacob Bohanon
85b8e773ce Merge branch 'main' of ssh://192.168.10.50:30009/jacob/.dotfiles into local-on-thinkpad 2026-06-06 10:58:53 -04:00
e2521a2df3 changes from personal machine 2026-06-06 10:55:27 -04:00
c03ee8019e Changes returning to solo.io (#1)
1. Add ghostty config
2. Revise the nvim-lsp config to remedy deprecation warnings
3. Add back solo.zsh with enhancements

Reviewed-on: #1
Co-authored-by: Jacob Bohanon <jacobbohanon@gmail.com>
Co-committed-by: Jacob Bohanon <jacobbohanon@gmail.com>
2026-06-01 12:05:40 -04:00
3 changed files with 14 additions and 2 deletions

View File

@@ -19,3 +19,8 @@ lines = 115
[window.position] [window.position]
x = 1550 x = 1550
y = 0 y = 0
[keyboard]
bindings = [
{ key = "Return", mods = "Shift", chars = "\n" }
]

View File

@@ -1 +1,8 @@
font-family = "FiraCode Nerd Font Mono" font-family = "FiraCode Nerd Font Mono"
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 #!/usr/bin/bash -e
branch=$(git status|head -1|cut -f3 -d\ ) branch=$(git status|head -1|cut -f3 -d\ )
git checkout main git checkout $(git_main_branch)
git pull git pull
git checkout "$branch" git checkout "$branch"
git merge main git merge $(git_main_branch)