Compare commits

...

5 Commits

7 changed files with 13 additions and 8 deletions

View File

@ -320,7 +320,7 @@ tiling_drag modifier titlebar
## Syntax:
#exec [--no-startup-id] <command>
#exec_always [--no-startup-id] <command>
exec_always --no-startup-id setxkbmap -option caps:swapescape
exec_always --no-startup-id setxkbmap us
exec_always --no-startup-id ~/.screenlayout/default.sh
exec_always --no-startup-id ~/.config/i3/scripts/i3_autostart

View File

@ -7,7 +7,7 @@
;signingkey = C6424C524F8B4D0B0C6F9380ACD9F65FA7E19986;USB-C
token = REPLACE HERE TOKEN
[commit]
gpgSign = false
gpgSign = true
[gpg]
program = gpg2
[tag]

View File

@ -22,3 +22,8 @@ returner-consumer-stderr.log
returner-consumer-stdout.log
celery-exporter
.gitlab.nvim
arcanite_gestion/lib/
dependencies.html

2
neovim

@ -1 +1 @@
Subproject commit d6f6f9e11d4ea7835ae73820d581ec2ce1a13432
Subproject commit 3f08c78c134c6c577b64d6b4161999ff459bd394

@ -1 +1 @@
Subproject commit fd029a8ce24e70d413639876e4e50653d1af1bf2
Subproject commit 953b9a791c8ef9f2bf62253ce18dccd837519be0

View File

@ -63,8 +63,8 @@ run -b '~/.tmux/plugins/tpm/tpm'
set -s escape-time 0
set-option -g default-terminal "screen-256color"
bind-key -r f run-shell "tmux neww ~/Documents/dotfiles/scripts/tmux-sessionizer"
bind-key -r m run-shell "tmux neww ~/Documents/dotfiles/scripts/tmux-multi-ssh"
bind-key -r f run-shell "tmux neww /home/legrems/miniconda3/bin/python ~/Documents/dotfiles/scripts/tmux_sessionizer.py"
bind-key -r g run-shell "tmux neww /home/legrems/miniconda3/bin/python ~/Documents/dotfiles/scripts/tmux_select_session.py"
bind-key -r m run-shell "tmux neww /home/legrems/miniconda3/bin/python ~/Documents/dotfiles/scripts/tmux_ssh_group.py"
bind-key -r j run-shell "tmux neww /home/legrems/miniconda3/bin/python ~/Documents/dotfiles/scripts/tmux_multi_ssh.py"
bind-key -r i set-window-option synchronize-panes\; display-message "synchronize-panes is now #{?pane_synchronized, #[bg=red]!! ON !!,OFF}"

View File

@ -37,8 +37,8 @@ f() { find . -name "*$1*"; }
tar-create() {tar cfv $@}
tar-list() {tar -tvf $@}
tar-extract() {tar xfv $@}
us-layout() {setxkbmap us -option caps:swapescape }
usint-layout() {setxkbmap us -variant intl -option caps:swapescape }
us-layout() {setxkbmap us }
usint-layout() {setxkbmap us -variant intl }
make_venv() {
echo $(basename $(pwd) | awk '{print "conda activate "$1}') > $(pwd | awk '{print $1"/.autoenv.zsh"}')