add sync_dotfiles

This commit is contained in:
Antoine 2024-03-26 17:34:48 +01:00
parent 2d47d28895
commit 4bb416d378
4 changed files with 18 additions and 1 deletions

View file

@ -14,4 +14,6 @@ alias n="cd ~/notes"
alias nv="nvim" alias nv="nvim"
alias t="tmux" alias t="tmux"
alias d="cd ~/dev" alias d="cd ~/dev"
alias sd="cd ~ && cd \$(find . -type d | fzf)"
alias c="clear"
eval "$(starship init bash)" eval "$(starship init bash)"

2
bashrc
View file

@ -4,4 +4,6 @@ alias ~="cd ~"
alias n="cd ~/notes" alias n="cd ~/notes"
alias nv="nvim" alias nv="nvim"
alias t="tmux" alias t="tmux"
alias sd="cd ~ && cd \$(find . -type d | fzf)"
eval "$(starship init bash)" eval "$(starship init bash)"

View file

@ -7,6 +7,19 @@ set -g focus-events on
set -g mouse on set -g mouse on
# remap prefix to Ctrl-f
unbind C-b
set-option -g prefix C-f
bind-key C-f send-prefix
# vim keybindings to navigate across panes
# Set Vim-style pane navigation
bind-key -n C-h select-pane -L
bind-key -n C-j select-pane -D
bind-key -n C-k select-pane -U
bind-key -n C-l select-pane -R
# status bar # status bar
set -g window-status-current-style 'fg=white' set -g window-status-current-style 'fg=white'
set -g window-style default set -g window-style default