mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-21 22:18:07 +01:00
Compare commits
No commits in common. "aaf619f3c22b380d0443adbc8a7f02b4840fbca7" and "fa7faa1315d10fe212e70204d3d08d97505fbd6d" have entirely different histories.
aaf619f3c2
...
fa7faa1315
7 changed files with 13 additions and 17 deletions
|
@ -14,8 +14,6 @@
|
|||
[
|
||||
"Vintage",
|
||||
],
|
||||
"theme": "Adaptive.sublime-theme",
|
||||
"index_files": true,
|
||||
"color_scheme": "auto",
|
||||
"dark_color_scheme": "Catppuccin Mocha.sublime-color-scheme",
|
||||
"light_color_scheme": "Catppuccin Latte.sublime-color-scheme",
|
||||
|
|
|
@ -30,9 +30,9 @@ set -gx POETRY_HTTP_BASIC_PYPI_PASSWORD $PYPI_TOKEN
|
|||
set -gx ANSIBLE_NOCOWS 1
|
||||
|
||||
{{- if eq .chezmoi.os "darwin" }}
|
||||
set -g fish_greeting "Wsh, bien ?"
|
||||
set -g fish_greeting "Yo ✌🏻Bien ?"
|
||||
{{- else }}
|
||||
set -g fish_greeting "Wsh, bien ?"
|
||||
set -g fish_greeting "Yo ✌ Bien ?"
|
||||
{{- end }}
|
||||
|
||||
# Install python with pyenv with tcl/tk support
|
||||
|
@ -42,7 +42,6 @@ set -gx PIPX_DEFAULT_PYTHON "/Users/gaugendre/.local/share/mise/installs/python/
|
|||
set -gx PIP_REQUIRE_VIRTUALENV true
|
||||
set -gx MISE_PYTHON_VENV_AUTO_CREATE true
|
||||
|
||||
set -gx ITERM_ENABLE_SHELL_INTEGRATION_WITH_TMUX YES
|
||||
test -e {$HOME}/.iterm2_shell_integration.fish ; and source {$HOME}/.iterm2_shell_integration.fish
|
||||
|
||||
set -gx EDITOR nvim
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
function tmssh --wraps=ssh --description 'start ssh with tmux'
|
||||
ssh -t $argv 'tmux -CC new -A -s tmssh'
|
||||
end
|
|
@ -1,4 +0,0 @@
|
|||
function ubuntu --description 'alias ubuntu tmssh ubuntu'
|
||||
tmssh ubuntu $argv
|
||||
|
||||
end
|
|
@ -86,8 +86,3 @@ setw -g window-status-bell-style 'fg=black bg=yellow bold'
|
|||
|
||||
# messages
|
||||
set -g message-style 'fg=black bg=white bold'
|
||||
|
||||
# https://gitlab.com/gnachman/iterm2/-/wikis/tmux-Integration-Best-Practices#i-want-to-see-tmux-window-titles-as-tabwindow-titles-in-iterm2
|
||||
set-option -g set-titles on
|
||||
set-option -g set-titles-string '#T'
|
||||
|
||||
|
|
|
@ -8,6 +8,17 @@ Host ubuntu
|
|||
ControlMaster auto
|
||||
ControlPath ~/.ssh/control-%C
|
||||
ControlPersist 4h
|
||||
RequestTTY yes
|
||||
RemoteCommand tmux -CC new -A -s tmssh
|
||||
|
||||
Host ubuntu-no-tmux
|
||||
Hostname 192.168.0.6
|
||||
User gaugendre
|
||||
ForwardAgent yes
|
||||
ControlMaster auto
|
||||
ControlPath ~/.ssh/control-%C
|
||||
ControlPersist 4h
|
||||
RequestTTY yes
|
||||
|
||||
Host hass
|
||||
Hostname 192.168.0.9
|
||||
|
|
Loading…
Reference in a new issue