This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Fish doesn't play all that well with others | |
set shell=/bin/bash | |
let mapleader = "\<Space>" | |
" ============================================================================= | |
" # PLUGINS | |
" ============================================================================= | |
" Load vundle | |
set nocompatible | |
filetype off |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
status is-login; and pyenv init --path | source | |
status is-interactive; and pyenv init - | source | |
source /opt/homebrew/opt/asdf/libexec/asdf.fish | |
nvm use latest | |
alias n "code" | |
alias ff "fzf --preview 'bat -p --color=always {}'" | |
alias e "code (fzf --preview 'bat -p --color=always {}')" | |
alias cc "bat -p" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set-option -sg escape-time 10 | |
set-option -g default-terminal "screen-256color" | |
# remap prefix from 'C-b' to 'C-a' | |
# unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
bind r source-file ~/.tmux.conf |