mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-21 22:18:07 +01:00
Compare commits
4 commits
fa7faa1315
...
aaf619f3c2
Author | SHA1 | Date | |
---|---|---|---|
aaf619f3c2 | |||
2b5c6fc718 | |||
d1a241999a | |||
a2ac996025 |
7 changed files with 17 additions and 13 deletions
|
@ -14,6 +14,8 @@
|
||||||
[
|
[
|
||||||
"Vintage",
|
"Vintage",
|
||||||
],
|
],
|
||||||
|
"theme": "Adaptive.sublime-theme",
|
||||||
|
"index_files": true,
|
||||||
"color_scheme": "auto",
|
"color_scheme": "auto",
|
||||||
"dark_color_scheme": "Catppuccin Mocha.sublime-color-scheme",
|
"dark_color_scheme": "Catppuccin Mocha.sublime-color-scheme",
|
||||||
"light_color_scheme": "Catppuccin Latte.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
|
set -gx ANSIBLE_NOCOWS 1
|
||||||
|
|
||||||
{{- if eq .chezmoi.os "darwin" }}
|
{{- if eq .chezmoi.os "darwin" }}
|
||||||
set -g fish_greeting "Yo ✌🏻Bien ?"
|
set -g fish_greeting "Wsh, bien ?"
|
||||||
{{- else }}
|
{{- else }}
|
||||||
set -g fish_greeting "Yo ✌ Bien ?"
|
set -g fish_greeting "Wsh, bien ?"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
# Install python with pyenv with tcl/tk support
|
# Install python with pyenv with tcl/tk support
|
||||||
|
@ -42,6 +42,7 @@ set -gx PIPX_DEFAULT_PYTHON "/Users/gaugendre/.local/share/mise/installs/python/
|
||||||
set -gx PIP_REQUIRE_VIRTUALENV true
|
set -gx PIP_REQUIRE_VIRTUALENV true
|
||||||
set -gx MISE_PYTHON_VENV_AUTO_CREATE 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
|
test -e {$HOME}/.iterm2_shell_integration.fish ; and source {$HOME}/.iterm2_shell_integration.fish
|
||||||
|
|
||||||
set -gx EDITOR nvim
|
set -gx EDITOR nvim
|
||||||
|
|
3
dot_config/fish/private_functions/tmssh.fish
Normal file
3
dot_config/fish/private_functions/tmssh.fish
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
function tmssh --wraps=ssh --description 'start ssh with tmux'
|
||||||
|
ssh -t $argv 'tmux -CC new -A -s tmssh'
|
||||||
|
end
|
4
dot_config/fish/private_functions/ubuntu.fish
Normal file
4
dot_config/fish/private_functions/ubuntu.fish
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
function ubuntu --description 'alias ubuntu tmssh ubuntu'
|
||||||
|
tmssh ubuntu $argv
|
||||||
|
|
||||||
|
end
|
|
@ -86,3 +86,8 @@ setw -g window-status-bell-style 'fg=black bg=yellow bold'
|
||||||
|
|
||||||
# messages
|
# messages
|
||||||
set -g message-style 'fg=black bg=white bold'
|
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'
|
||||||
|
|
||||||
|
|
0
empty_dot_hushlogin
Normal file
0
empty_dot_hushlogin
Normal file
|
@ -8,17 +8,6 @@ Host ubuntu
|
||||||
ControlMaster auto
|
ControlMaster auto
|
||||||
ControlPath ~/.ssh/control-%C
|
ControlPath ~/.ssh/control-%C
|
||||||
ControlPersist 4h
|
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
|
Host hass
|
||||||
Hostname 192.168.0.9
|
Hostname 192.168.0.9
|
||||||
|
|
Loading…
Reference in a new issue