add sync_dotfiles
This commit is contained in:
parent
2d47d28895
commit
4bb416d378
4 changed files with 18 additions and 1 deletions
|
|
@ -14,4 +14,6 @@ alias n="cd ~/notes"
|
|||
alias nv="nvim"
|
||||
alias t="tmux"
|
||||
alias d="cd ~/dev"
|
||||
alias sd="cd ~ && cd \$(find . -type d | fzf)"
|
||||
alias c="clear"
|
||||
eval "$(starship init bash)"
|
||||
|
|
|
|||
2
bashrc
2
bashrc
|
|
@ -4,4 +4,6 @@ alias ~="cd ~"
|
|||
alias n="cd ~/notes"
|
||||
alias nv="nvim"
|
||||
alias t="tmux"
|
||||
|
||||
alias sd="cd ~ && cd \$(find . -type d | fzf)"
|
||||
eval "$(starship init bash)"
|
||||
|
|
|
|||
2
init.lua
2
init.lua
|
|
@ -2,5 +2,5 @@ return{
|
|||
plugins = {
|
||||
{ "catppuccin/nvim", name = "catppuccin", priority = 1000 }
|
||||
},
|
||||
colorscheme = "catppuccin-macchiato"
|
||||
colorscheme = "catppuccin-macchiato"
|
||||
}
|
||||
|
|
|
|||
13
tmux.conf
13
tmux.conf
|
|
@ -7,6 +7,19 @@ set -g focus-events 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
|
||||
set -g window-status-current-style 'fg=white'
|
||||
set -g window-style default
|
||||
|
|
|
|||
Loading…
Reference in a new issue