mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
159 lines
4.4 KiB
Fish
159 lines
4.4 KiB
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
end
|
|
|
|
# *** *** Configuration *** ***
|
|
|
|
# asdf Version Manager
|
|
source /usr/local/opt/asdf/libexec/asdf.fish
|
|
|
|
# Neovim as default editor
|
|
set -U EDITOR nvim
|
|
|
|
set PATH ~/.dotfiles/bin $PATH
|
|
set PATH ~/.dotfiles/private/bin $PATH
|
|
|
|
# Set .config folder
|
|
set --export XDG_CONFIG_HOME "$HOME/.config"
|
|
|
|
set --export KEYTIMEOUT 1
|
|
set --export RIPGREP_CONFIG_PATH $HOME/.ripgreprc
|
|
set --export GIT_EDITOR nvim
|
|
set --export EDITOR nvim
|
|
|
|
# FZF
|
|
set FD_OPTIONS "--follow --exclude .git --exclude node_modules"
|
|
|
|
set --export FZF_DEFAULT_COMMAND "git ls-files --cached --others --exclude-standard | fd --hidden --type f --type l $FD_OPTIONS"
|
|
set --export FZF_DEFAULT_OPTS "--no-height"
|
|
|
|
set --export FZF_CTRL_T_COMMAND "$FZF_DEFAULT_COMMAND"
|
|
set --export FZF_CTRL_T_OPTS "--preview 'bat --color=always --style=numbers {}' --bind shift-up:preview-page-up,shift-down:preview-page-down"
|
|
|
|
set --export FZF_CTRL_R_OPTS "--reverse"
|
|
set --export FZF_TMUX_OPTS "-p"
|
|
|
|
set --export FZF_ALT_C_COMMAND "fd --type d $FD_OPTIONS --color=never --hidden"
|
|
set --export FZF_ALT_C_OPTS "--preview 'tree -C {} | head -50'"
|
|
|
|
# Rust
|
|
set --export PATH "$HOME/.cargo/bin:$PATH"
|
|
|
|
# TMUX
|
|
if set -q TMUX
|
|
set --export NVIM_LISTEN_ADDRESS (tmux show-environment -s NVIM_LISTEN_ADDRESS 2> /dev/null)
|
|
else
|
|
set --export NVIM_LISTEN_ADDRESS /tmp/nvimsocket
|
|
end
|
|
|
|
set --export PATH $HOME/.tmux/plugins/tmux-nvr/bin $PATH
|
|
set --export PATH $HOME/.tmux/plugins/t-smart-tmux-session-manager/bin $PATH
|
|
|
|
# BasicTex
|
|
set --export PATH /Library/TeX/texbin $PATH
|
|
|
|
# Man
|
|
set --export MANPATH "/usr/local/man:$MANPATH"
|
|
|
|
# Bat
|
|
set --export BAT_PAGER "less -R"
|
|
|
|
# Enable vi-mode key bindings
|
|
fish_vi_key_bindings
|
|
|
|
# (r)everse history search
|
|
bind -M viins '^r' 'fzf-history-widget'
|
|
|
|
# (f)ile / (t)
|
|
bind -M viins '^f' 'fzf-file-widget'
|
|
|
|
# (z) jump
|
|
bind -M viins '^z' 'fzf-cd-widget'
|
|
|
|
# *** *** Aliases *** ***
|
|
|
|
# Fish
|
|
alias reload 'exec fish'
|
|
|
|
# Folders/Lists
|
|
alias ... 'cd ../..'
|
|
alias cd.. 'cd ..'
|
|
alias ls 'exa --git --group-directories-first --icons'
|
|
alias ll 'exa -l --git --group-directories-first --icons'
|
|
alias lla 'll -a'
|
|
alias mkdir 'mkdir -p'
|
|
|
|
# Git
|
|
alias ga 'git add'
|
|
alias gb 'git branch'
|
|
alias gba 'git branch -a'
|
|
alias gc 'git commit -v'
|
|
alias gca 'git commit -v -a'
|
|
alias gcam 'git commit --amend'
|
|
alias gcan 'git commit --amend --no-edit'
|
|
alias gd 'git diff -- . ":(exclude)yarn.lock"'
|
|
alias gd 'git diff -- . ":(exclude)yarn.lock"' # Show differences between index and working tree
|
|
alias gdc 'git diff --cached' # Show changes in next commit (differences between index and last commit)
|
|
alias gdh 'git diff head' # Show difference between files in working tree and last commit
|
|
alias gdt 'git difftool'
|
|
alias gfa 'git fetch --all'
|
|
alias gg 'git log'
|
|
alias ghi 'git hist'
|
|
alias gl 'git pull'
|
|
alias glr 'git pull --rebase'
|
|
alias glu 'git config user.name "Stefan Imhoff" && git config user.email "stefan@imhoff.name";'
|
|
alias glx 'git config user.name "Stefan Imhoff" && git config user.email "stefan.imhoff@xing.com";'
|
|
alias gmb 'git merge-base master HEAD'
|
|
alias gp 'git push'
|
|
alias gpf 'git push --force-with-lease'
|
|
alias gpp 'PATCHNAME=`git branch 2> /dev/null | sed -e "/^[^*]/d" -e "s/* \(.*\)/\1/"`-`date "+%Y-%m-%d-%H%M.patch"`; git diff --full-index master > ../patches/$PATCHNAME'
|
|
alias gpu 'git push -u origin HEAD'
|
|
alias gpv 'git push --no-verify'
|
|
alias grb 'git rebase master'
|
|
alias grbc 'git rebase --continue'
|
|
alias grbi 'git rebase -i '
|
|
alias grbs 'git rebase --skip'
|
|
alias gru 'git remote update'
|
|
alias gsb 'git show-branch'
|
|
alias gsl 'git submodule foreach git pull'
|
|
alias gst 'git status -sb'
|
|
alias gsu 'git submodule update'
|
|
alias gu 'git up'
|
|
alias gw 'git whatchanged'
|
|
alias gw 'git worktree'
|
|
alias gwa 'git worktree add' # <folder> <branch/hash>
|
|
alias gwl 'git worktree list'
|
|
alias gwp 'git whatchanged -p'
|
|
alias gwr 'git worktree remove' # <path/name>
|
|
alias lg 'lazygit'
|
|
alias gcrb 'git branch --sort=-committerdate | fzf --header "Checkout Recent Branch" --preview "git diff --color=always {1}" --pointer="" | xargs git checkout '
|
|
|
|
|
|
# Vim/Neovim
|
|
alias v "vim"
|
|
|
|
if type nvim > /dev/null 2>&1
|
|
alias vim 'nvim'
|
|
end
|
|
|
|
# TMUX
|
|
alias t 'tmux'
|
|
alias mux 'tmuxinator'
|
|
alias ms 'mux start'
|
|
alias ta 'tmux attach'
|
|
|
|
# Bat
|
|
alias cat 'bat'
|
|
|
|
# Dotfiles Folder
|
|
alias dotfiles 'cd ~/.dotfiles'
|
|
|
|
# iCloud
|
|
alias icloud "cd ~/Library/Mobile\ Documents/com~apple~CloudDocs"
|
|
#
|
|
# Clear the screen
|
|
alias c "clear"
|
|
|
|
# Prompt
|
|
starship init fish | source
|