feat(nix): migrate zsh, starship, zoxide, and fzf

This commit is contained in:
Stefan Imhoff
2024-07-29 17:00:30 +02:00
parent 9c6d620ce6
commit bb958c31c8
16 changed files with 472 additions and 561 deletions

Submodule .antigen deleted from 8846aa9020

View File

@@ -10,14 +10,11 @@
- link: - link:
~/.config/fish: fish ~/.config/fish: fish
~/.config/nvim: nvim ~/.config/nvim: nvim
~/.config/starship.toml: prompt/starship.toml
~/.config/tmux/tmux-nerd-font-window-name.yml: tmux/tmux-nerd-font-window-name.yml ~/.config/tmux/tmux-nerd-font-window-name.yml: tmux/tmux-nerd-font-window-name.yml
~/.gitmux.conf: tmux/gitmux.conf ~/.gitmux.conf: tmux/gitmux.conf
~/.tmux-cht-command: tmux/tmux-cht-command ~/.tmux-cht-command: tmux/tmux-cht-command
~/.tmux-cht-languages: tmux/tmux-cht-languages ~/.tmux-cht-languages: tmux/tmux-cht-languages
~/.tmux.conf: tmux/tmux.conf ~/.tmux.conf: tmux/tmux.conf
~/.zsh.d: zsh/zsh.d
~/.zshrc: zsh/zshrc
- shell: - shell:
- [git submodule update --init --recursive, Installing submodules] - [git submodule update --init --recursive, Installing submodules]

3
.gitmodules vendored
View File

@@ -2,9 +2,6 @@
ignore = dirty ignore = dirty
path = .dotbot path = .dotbot
url = https://github.com/anishathalye/dotbot url = https://github.com/anishathalye/dotbot
[submodule ".antigen"]
path = .antigen
url = https://github.com/zsh-users/antigen.git
[submodule "private/bin"] [submodule "private/bin"]
path = private/bin path = private/bin
url = git@github.com:kogakure/scripts.git url = git@github.com:kogakure/scripts.git

View File

@@ -21,6 +21,8 @@ brew "fish"
brew "gettext" brew "gettext"
# C/C++ and Java libraries for Unicode and globalization # C/C++ and Java libraries for Unicode and globalization
brew "icu4c" brew "icu4c"
# Conversion library
brew "libiconv"
# Just-In-Time Compiler (JIT) for the Lua programming language # Just-In-Time Compiler (JIT) for the Lua programming language
brew "luajit", args: ["HEAD"] brew "luajit", args: ["HEAD"]
# Mac App Store command-line interface # Mac App Store command-line interface

View File

@@ -4,24 +4,6 @@
programs.bash = { programs.bash = {
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;
sessionVariables = {
SSH_AUTH_SOCK = "$HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh";
FD_OPTIONS = "--follow --exclude .git --exclude node_modules";
KEYTIMEOUT = 1;
GIT_EDITOR = "nvim";
EDITOR = "nvim";
FZF_DEFAULT_COMMAND = "git ls-files --cached --others --exclude-standard | fd --hidden --type f --type l $FD_OPTIONS";
FZF_DEFAULT_OPTS = "--no-height";
FZF_CTRL_T_COMMAND = "$FZF_DEFAULT_COMMAND";
FZF_CTRL_T_OPTS = "--preview 'bat --color=always --style=numbers {}' --bind shift-up:preview-page-up,shift-down:preview-page-down";
FZF_CTRL_R_OPTS = "--reverse";
FZF_TMUX_OPTS = "-p";
FZF_ALT_C_COMMAND = "fd --type d $FD_OPTIONS --color=never --hidden";
FZF_ALT_C_OPTS = "--preview 'tree -C {} | head -50'";
};
shellAliases = {
".." = "cd ..";
};
shellOptions = [ shellOptions = [
"histappend" "histappend"
"checkwinsize" "checkwinsize"

View File

@@ -14,6 +14,7 @@ in
./ctags ./ctags
./curl ./curl
./editorconfig ./editorconfig
./fzf
./gh ./gh
./gh-dash ./gh-dash
./git ./git
@@ -29,11 +30,14 @@ in
./ruby ./ruby
./sesh ./sesh
./skhd ./skhd
./starship
./wezterm ./wezterm
./wget ./wget
./yabai ./yabai
./yazi ./yazi
./zed ./zed
./zoxide
./zsh
]; ];
config = { config = {
@@ -47,29 +51,52 @@ in
&& tic -x -o ~/.terminfo $tempfile \ && tic -x -o ~/.terminfo $tempfile \
&& rm $tempfile && rm $tempfile
''; '';
# Install custom icon for WezTerm
setupWezTermCustomIcon = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
icon_path="$HOME/.config/wezterm/terminal.icns"
app_path="/Applications/WezTerm.app"
$DRY_RUN_CMD mkdir -p "$(dirname "$icon_path")"
$DRY_RUN_CMD cp -f ${./wezterm/wezterm.icns} "$icon_path"
if [ -d "$app_path" ]; then
$DRY_RUN_CMD cp "$icon_path" "$app_path"/Contents/Resources/terminal.icns
# Touch the app to refresh Finder
$DRY_RUN_CMD touch "$app_path"
$DRY_RUN_CMD ${pkgs.darwin.xattr}/bin/xattr -rc "$app_path"
$VERBOSE_ECHO "Applied custom icon to WezTerm.app"
$DRY_RUN_CMD touch "$app_path"
else
$VERBOSE_ECHO "WezTerm.app not found in /Applications. Custom icon not applied."
fi
'';
}; };
# Session Variables
home.sessionVariables = {
KEYTIMEOUT = 1;
# Man
MANPATH = "/usr/local/man:$MANPATH";
# Editor
EDITOR = "nvim";
GIT_EDITOR = "nvim";
# Secretive
SSH_AUTH_SOCK = "$HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh";
# Volta
VOLTA_HOME = "$HOME/.volta";
};
# Session Paths
home.sessionPath = [
# Personal scripts
"$HOME/.dotfiles/bin"
"$HOME/.dotfiles/private/bin"
# Homebrew
"/opt/homebrew/bin"
"/opt/homebrew/sbin"
# Misc
"$HOME/.local/bin"
"/usr/local/bin"
"/usr/local/sbin"
#
# Rust
"$HOME/.cargo/bin"
# Tmux plugins
"$HOME/.tmux/plugins/tmux-nvr/bin"
"$HOME/.tmux/plugins/t-smart-tmux-session-manager/bin"
# Volta
"$VOLTA_HOME/bin"
];
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; programs.home-manager.enable = true;
@@ -91,13 +118,13 @@ in
coreutils # GNU Core Utilities coreutils # GNU Core Utilities
darwin.xattr # Display and manipulate extended attributes darwin.xattr # Display and manipulate extended attributes
diff-so-fancy # Good-looking diffs filter for git diff-so-fancy # Good-looking diffs filter for git
docker # Pack, ship and run any application as a lightweight container
docker-buildx # Docker CLI plugin for extended build capabilities with BuildKit docker-buildx # Docker CLI plugin for extended build capabilities with BuildKit
dust # du + rust = dust. Like du but more intuitive dust # du + rust = dust. Like du but more intuitive
exiftool # Tool to read, write and edit EXIF meta information exiftool # Tool to read, write and edit EXIF meta information
eza # Modern, maintained replacement for ls eza # Modern, maintained replacement for ls
fd # Simple, fast and user-friendly alternative to find fd # Simple, fast and user-friendly alternative to find
ffmpeg_7 # Complete, cross-platform solution to record, convert and stream audio and video ffmpeg_7 # Complete, cross-platform solution to record, convert and stream audio and video
fzf # Command-line fuzzy finder written in Go
glow # Render markdown on the CLI, with pizzazz! glow # Render markdown on the CLI, with pizzazz!
gource # Software version control visualization tool gource # Software version control visualization tool
grex # Command-line tool for generating regular expressions from user-provided test cases grex # Command-line tool for generating regular expressions from user-provided test cases
@@ -131,7 +158,6 @@ in
woff2 # Webfont compression reference code woff2 # Webfont compression reference code
yarn # Fast, reliable, and secure dependency management for javascript yarn # Fast, reliable, and secure dependency management for javascript
yt-dlp # Command-line tool to download videos from YouTube.com and other sites (youtube-dl fork) yt-dlp # Command-line tool to download videos from YouTube.com and other sites (youtube-dl fork)
zoxide # Fast cd command that learns your habits
# Programming Languages # Programming Languages
lua # Powerful, fast, lightweight, embeddable scripting language lua # Powerful, fast, lightweight, embeddable scripting language

30
nix/home/fzf/default.nix Normal file
View File

@@ -0,0 +1,30 @@
{ ... }:
let
fdOptions = "--follow --exclude .git --exclude node_modules";
in
{
programs.fzf = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
enableFishIntegration = true;
defaultCommand = "git ls-files --cached --others --exclude-standard | fd --hidden --type f --type l ${fdOptions}";
defaultOptions = [ "--no-height" ];
changeDirWidgetCommand = "fd --type d ${fdOptions} --color=never --hidden";
changeDirWidgetOptions = [ "--preview 'tree -C {} | head -50'" ];
fileWidgetCommand = "git ls-files --cached --others --exclude-standard | fd --hidden --type f --type l ${fdOptions}";
fileWidgetOptions = [
"--preview 'bat --color=always --style=numbers {}'"
"--bind shift-up:preview-page-up,shift-down:preview-page-down"
];
historyWidgetOptions = [ "--reverse" ];
tmux.enableShellIntegration = true;
tmux.shellIntegrationOptions = [ "-p" ];
};
}

View File

@@ -0,0 +1,27 @@
{ ... }:
{
programs.starship = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
enableFishIntegration = true;
settings = {
add_newline = false;
command_timeout = 2000;
battery = {
disabled = true;
display = [
{
threshold = 10;
style = "bold red";
}
{
threshold = 30;
style = "bold yellow";
}
];
};
};
};
}

View File

@@ -0,0 +1,10 @@
{ ... }:
{
programs.zoxide = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
enableFishIntegration = true;
};
}

164
nix/home/zsh/default.nix Normal file
View File

@@ -0,0 +1,164 @@
{ lib, pkgs, ... }:
let
chtCompletionScript = pkgs.writeTextFile {
name = "_cht";
text = builtins.readFile ./_cht;
destination = "/share/zsh/site-functions/_cht";
};
in
{
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
# ZSH
zshconfig = "vim $HOME/.zshrc";
reload = "source $HOME/.zshrc";
# Folders
"..." = "cd ../..";
".." = "cd ..";
"cd.." = "cd ..";
ls = "eza --git --group-directories-first --icons";
ll = "eza -l --git --group-directories-first --icons";
lla = "ll -a";
mkdir = "mkdir -p";
# Git aliases
ga = "git add";
gb = "git branch";
gba = "git branch -a";
gc = "git commit -v";
gca = "git commit -v -a";
gcam = "git commit --amend";
gcan = "git commit --amend --no-edit";
gd = "git diff -- . ':(exclude)yarn.lock'";
gdc = "git diff --cached";
gdh = "git diff head";
gdt = "git difftool";
gfa = "git fetch --all";
gg = "git log";
ghi = "git hist";
gl = "git pull";
glr = "git pull --rebase";
gp = "git push";
gpf = "git push --force-with-lease";
gpu = "git push -u origin HEAD";
gpv = "git push --no-verify";
grb = "git rebase master";
grbc = "git rebase --continue";
grbi = "git rebase -i ";
grbs = "git rebase --skip";
gru = "git remote update";
gsb = "git show-branch";
gsl = "git submodule foreach git pull";
gst = "git status -sb";
gsu = "git submodule update";
gu = "git up";
gw = "git whatchanged";
gwp = "git whatchanged -p";
lg = "lazygit";
# Vim
v = "vim";
vim = "nvim";
# Tmux
t = "tmux";
tn = "tmux new -s $(pwd | sed 's/.*\///g')";
# Bat
cat = "bat";
# TLDR
tldrf = "tldr --list --single-column | fzf --preview \"tldr --color=always {1}\" --preview-window=right,70% | xargs tldr";
# iA Writer
ia = "open $1 -a /Applications/iA\\ Writer.app";
# Dotfiles folder
dotfiles = "cd $HOME/.dotfiles";
# iCloud
icloud = "cd $HOME/Library/Mobile\\ Documents/com~apple~CloudDocs";
# Get week number
week = "date +%V";
# Stopwatch
timer = "echo \"Timer started. Stop with Ctrl-D.\" && date && time cat && date";
# IP addresses
ip = "dig +short myip.opendns.com @resolver1.opendns.com";
# Flush Directory Service cache
flush = "dscacheutil -flushcache && killall -HUP mDNSResponder";
# Recursively delete `.DS_Store` files
cleanup = "find . -type f -name '*.DS_Store' -ls -delete";
# Clear the screen
c = "clear";
# Empty the Trash on all mounted volumes and the main HDD
# Also, clear Apples System Logs to improve shell startup speed
emptytrash = "sudo rm -rfv /Volumes/*/.Trashes; sudo rm -rfv ~/.Trash; sudo rm -rfv /private/var/log/asl/*.asl";
};
initExtra = builtins.readFile ./zshrc.sh;
plugins = [
{
name = "cht-completion";
src = chtCompletionScript;
}
];
antidote = {
enable = true;
plugins = [
"ohmyzsh/ohmyzsh path:plugins/brew"
"ohmyzsh/ohmyzsh path:plugins/bundler"
"ohmyzsh/ohmyzsh path:plugins/colored-man-pages"
"ohmyzsh/ohmyzsh path:plugins/colorize"
"ohmyzsh/ohmyzsh path:plugins/dotenv"
"ohmyzsh/ohmyzsh path:plugins/extract"
"ohmyzsh/ohmyzsh path:plugins/fzf"
"ohmyzsh/ohmyzsh path:plugins/gem"
"ohmyzsh/ohmyzsh path:plugins/git"
"ohmyzsh/ohmyzsh path:plugins/git-extras"
"ohmyzsh/ohmyzsh path:plugins/gitignore"
"ohmyzsh/ohmyzsh path:plugins/gulp"
"ohmyzsh/ohmyzsh path:plugins/history-substring-search"
"ohmyzsh/ohmyzsh path:plugins/jira"
"ohmyzsh/ohmyzsh path:plugins/man"
"ohmyzsh/ohmyzsh path:plugins/node"
"ohmyzsh/ohmyzsh path:plugins/npm"
"ohmyzsh/ohmyzsh path:plugins/pip"
"ohmyzsh/ohmyzsh path:plugins/pyenv"
"ohmyzsh/ohmyzsh path:plugins/python"
"ohmyzsh/ohmyzsh path:plugins/rsync"
"ohmyzsh/ohmyzsh path:plugins/ssh-agent"
"ohmyzsh/ohmyzsh path:plugins/sudo"
"ohmyzsh/ohmyzsh path:plugins/tmux"
# "ohmyzsh/ohmyzsh path:plugins/tmux-cssh"
"ohmyzsh/ohmyzsh path:plugins/tmuxinator"
"ohmyzsh/ohmyzsh path:plugins/vagrant"
"ohmyzsh/ohmyzsh path:plugins/virtualenv"
"ohmyzsh/ohmyzsh path:plugins/yarn"
"ohmyzsh/ohmyzsh path:plugins/z"
"ohmyzsh/ohmyzsh path:plugins/zsh-interactive-cd"
"zsh-users/zsh-autosuggestions"
"zsh-users/zsh-syntax-highlighting"
];
};
};
home.packages = [ chtCompletionScript ];
home.activation = {
zlcompile = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
$DRY_RUN_CMD ${pkgs.zsh}/bin/zsh -c "for f in $HOME/.zshrc $HOME/.zshenv; do zcompile -R -- \$f.zwc \$f; done"
'';
};
}

190
nix/home/zsh/zshrc.sh Normal file
View File

@@ -0,0 +1,190 @@
CASE_SENSITIVE="true" # Case-sensitive completion
DISABLE_AUTO_TITLE="true" # Disable auto-setting terminal title
COMPLETION_WAITING_DOTS="true"
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=7,bg=bold,underline"
# Bindkey
bindkey -v
bindkey -M viins '^r' fzf-history-widget # (r)everse history search
bindkey -M viins '^f' fzf-file-widget # (f)ile / (t)
bindkey -M viins '^z' fzf-cd-widget # (z) jump
# TMUX
if [ -n "$TMUX" ]; then
eval "$(tmux show-environment -s NVIM_LISTEN_ADDRESS 2>/dev/null)"
else
export NVIM_LISTEN_ADDRESS=/tmp/nvimsocket
fi
# Set ZSH_CACHE_DIR and ensure it exists
export ZSH_CACHE_DIR="$HOME/.cache/zsh"
mkdir -p "$ZSH_CACHE_DIR/completions"
# Ensure gh completions are sourced if gh is installed
if command -v gh &>/dev/null; then
eval "$(gh completion -s zsh)"
fi
# Atuin
if command -v atuin &>/dev/null; then
eval "$(atuin init zsh)"
fi
# Search and preview GitHub pull requests
function ghpr() {
GH_FORCE_TTY=100% gh pr list | fzf --ansi --preview 'GH_FORCE_TTY=100% gh pr view {1}' --preview-window down --header-lines 3 | awk '{print $1}' | xargs gh pr checkout
}
# Delete all node_modules folders in a folder and subfolders
function deleteNodeModules() {
find . -name "node_modules" -type d -exec rm -rf '{}' +
}
function homebrewBackup() {
cd ~/.dotfiles/
brew bundle dump --describe -f
}
function homebrewRestore() {
brew bundle --file ~/.dotfiles/Brewfile
}
# Server
server() {
browser-sync start --server --files "**"
}
# Determine size of a file or total size of a directory
fs() {
if du -b /dev/null >/dev/null 2>&1; then
local arg=-sbh
else
local arg=-sh
fi
if [[ -n "$@" ]]; then
du $arg -- "$@"
else
du $arg .[^.]* *
fi
}
# Modified version where you can press
# - CTRL-O to open with `open` command,
# - CTRL-E or Enter key to open with the $EDITOR
fo() {
IFS=$'\n' out=("$(fzf-tmux --query="$1" --exit-0 --expect=ctrl-o,ctrl-e)")
key=$(head -1 <<<"$out")
file=$(head -2 <<<"$out" | tail -1)
if [ -n "$file" ]; then
[ "$key" = ctrl-o ] && open "$file" || ${EDITOR:-vim} "$file"
fi
}
# fcd - cd into directory
fcd() {
cd $(find * -type d | fzf --preview 'tree -C {} | head -50')
}
# fhcd Jump to home directory and search for directories
fhcd() {
cd $HOME
cd $(find * -type d | fzf --preview 'tree -C {} | head -50')
}
# fdr - cd to selected parent directory
fdr() {
local declare dirs=()
get_parent_dirs() {
if [[ -d "${1}" ]]; then dirs+=("$1"); else return; fi
if [[ "${1}" == '/' ]]; then
for _dir in "${dirs[@]}"; do echo $_dir; done
else
get_parent_dirs $(dirname "$1")
fi
}
local DIR=$(get_parent_dirs $(realpath "${1:-$(pwd)}") | fzf-tmux --tac)
cd "$DIR"
}
# Find in files with ripgrep and fzf and open on that line
# -> Works together with Vim Plugin bogado/file-line
frg() {
file=$(rg . --line-number | fzf | cut -d: -f1 -f2)
if [ "$file" != "" ]; then
nvim $file
fi
}
# fkill - kill process
fkill() {
pid=$(ps -ef | sed 1d | fzf -m | awk '{print $2}')
if [ "x$pid" != "x" ]; then
kill -${1:-9} $pid
fi
}
# fco - checkout git branch/tag
fco() {
local tags branches target
tags=$(
git tag | awk '{print "\x1b[31;1mtag\x1b[m\t" $1}'
) || return
branches=$(
git branch --all | grep -v HEAD |
sed "s/.* //" | sed "s#remotes/[^/]*/##" |
sort -u | awk '{print "\x1b[34;1mbranch\x1b[m\t" $1}'
) || return
target=$(
(
echo "$tags"
echo "$branches"
) |
fzf-tmux -- --no-hscroll --ansi +m -d "\t" -n 2
) || return
git checkout $(echo "$target" | awk '{print $2}')
}
# fcoc - checkout git commit
fcoc() {
local commits commit
commits=$(git log --pretty=oneline --abbrev-commit --reverse) &&
commit=$(echo "$commits" | fzf --tac +s +m -e) &&
git checkout $(echo "$commit" | sed "s/ .*//")
}
# fshow - git commit browser
fshow() {
git log --graph --color=always \
--format="%C(auto)%h%d %s %C(black)%C(bold)%cr" "$@" |
fzf --ansi --no-sort --reverse --tiebreak=index --bind=ctrl-s:toggle-sort \
--bind "ctrl-m:execute:
(grep -o '[a-f0-9]\{7\}' | head -1 |
xargs -I % sh -c 'git show --color=always % | less -R') << 'FZF-EOF'
{}
FZF-EOF"
}
# Search z history with fzf
fz() {
[ $# -gt 0 ] && _z "$*" && return
cd "$(_z -l 2>&1 | fzf --height 40% --nth 2.. --reverse --inline-info +s --tac --query "${*##-* }" | sed 's/^[0-9,.]* *//')"
}
# Browse Brave history
fbh() {
local cols sep
cols=$((COLUMNS / 3))
sep='{{::}}'
# Copy History DB to circumvent the lock
# See http://stackoverflow.com/questions/8936878 for the file path
cp -f ~/Library/Application\ Support/BraveSoftware/Brave-Browser/Default/History /tmp/h
sqlite3 -separator $sep /tmp/h \
"select substr(title, 1, $cols), url
from urls order by last_visit_time desc" |
awk -F $sep '{printf "%-'$cols's \x1b[36m%s\n", $1, $2}' |
fzf --ansi --multi | sed 's#.*\(https*://\)#\1#' | xargs open
}

View File

@@ -1,17 +0,0 @@
# Don't print a new line at the start of the prompt
add_newline = false
command_timeout = 2000
[battery]
disabled = true
# "bold red" style when capacity is between 0% and 10%
[[battery.display]]
threshold = 10
style = "bold red"
# "bold yellow" style when capacity is between 10% and 30%
[[battery.display]]
threshold = 30
style = "bold yellow"

View File

@@ -1,3 +0,0 @@
#!/bin/sh
brew bundle --file ~/.dotfiles/Brewfile

View File

@@ -15,19 +15,6 @@ git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
echo "Installing Fish Plugin Manager" echo "Installing Fish Plugin Manager"
source ./fisher.sh source ./fisher.sh
# Homebrew
if test ! $(which brew); then
echo "Installing Homebrew"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
# Install SSH keys Secure Enclave
brew install --cask secretive
# Homebrew packages, Cask binaries and Mac App Store software
echo "Installing Homebrew packages, Cask binaries and Mac App Store software"
source ./brew.sh
# Neovim # Neovim
echo "Installing Neovim" echo "Installing Neovim"
source ./neovim.sh source ./neovim.sh

480
zsh/zshrc
View File

@@ -1,480 +0,0 @@
# *** *** Configuration *** ***
CASE_SENSITIVE="true" # Case-sensitive completion
DISABLE_AUTO_TITLE="true" # Disable auto-setting terminal title
COMPLETION_WAITING_DOTS="true" # Red dots while waiting for completion
# Autosuggest Highlighting
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=7,bg=bold,underline"
# SSH
export SSH_AUTH_SOCK=$HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
# Set .config folder
export XDG_CONFIG_HOME="$HOME/.config"
export KEYTIMEOUT=1
export RIPGREP_CONFIG_PATH=$HOME/.config/ripgrep/ripgreprc
export GIT_EDITOR=nvim
export EDITOR=nvim
# Fish shell like syntax highlighting for zsh
source "$(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
export ZSH_HIGHLIGHT_HIGHLIGHTERS_DIR="$(brew --prefix)/share/zsh-syntax-highlighting/highlighters"
# Base16 Shell
source ~/.config/base16-shell/base16-shell.plugin.zsh
# FD
FD_OPTIONS="--follow --exclude .git --exclude node_modules"
export FZF_DEFAULT_COMMAND="git ls-files --cached --others --exclude-standard | fd --hidden --type f --type l $FD_OPTIONS"
export FZF_DEFAULT_OPTS='--no-height'
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
export FZF_CTRL_T_OPTS="--preview 'bat --color=always --style=numbers {}' --bind shift-up:preview-page-up,shift-down:preview-page-down"
export FZF_CTRL_R_OPTS="--reverse"
export FZF_TMUX_OPTS="-p"
export FZF_ALT_C_COMMAND="fd --type d $FD_OPTIONS --color=never --hidden"
export FZF_ALT_C_OPTS="--preview 'tree -C {} | head -50'"
# Rust
export PATH="$HOME/.cargo/bin:$PATH"
# TMUX
if [ -n "$TMUX" ]; then
eval "$(tmux show-environment -s NVIM_LISTEN_ADDRESS 2> /dev/null)"
else
export NVIM_LISTEN_ADDRESS=/tmp/nvimsocket
fi
export PATH=$HOME/.tmux/plugins/tmux-nvr/bin:$PATH
export PATH=$HOME/.tmux/plugins/t-smart-tmux-session-manager/bin:$PATH
# Zoxide
eval "$(zoxide init zsh)"
# BasicTex
export PATH="/Library/TeX/texbin:$PATH"
# Conda
conda_path=$(brew --prefix)/Caskroom/miniconda/base/bin/conda
if [ -f "$conda_path" ]; then
eval "$("$conda_path" shell.zsh hook $argv)" | source
fi
# Man
export MANPATH="/usr/local/man:$MANPATH"
# Volta
export VOLTA_HOME="$HOME/.volta"
export PATH="$VOLTA_HOME/bin:$PATH"
# Starship
eval "$(starship init zsh)"
# FZF
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# Path
path=(
$HOME/.dotfiles/bin
$HOME/.dotfiles/private/bin
$HOME/.local/bin
/opt/homebrew/bin
/opt/homebrew/sbin
/usr/local/bin
/usr/local/sbin
$path
)
# Bindkey
bindkey -v
bindkey -M viins '^r' fzf-history-widget # (r)everse history search
bindkey -M viins '^f' fzf-file-widget # (f)ile / (t)
bindkey -M viins '^z' fzf-cd-widget # (z) jump
# *** *** Functions *** ***
# Get OS X Software Updates, and update installed Ruby gems, Homebrew, npm, and their installed packages
function update () {
brew update && brew outdated && brew upgrade && brew cleanup
sudo gem update --system && sudo gem update && gem cleanup all
pip install --upgrade pip
pip list -o --format columns | cut -d' ' -f1 | xargs -n1 pip install -U
npm update npm -g
npm update -g
# nvim --headless "+Lazy! sync" +qa
sudo softwareupdate -i -a
}
# Search and preview GitHub pull requests
function ghpr () {
GH_FORCE_TTY=100% gh pr list | fzf --ansi --preview 'GH_FORCE_TTY=100% gh pr view {1}' --preview-window down --header-lines 3 | awk '{print $1}' | xargs gh pr checkout
}
# Set a different icon for Kitty terminal
function replaceKittyLogo () {
cp ~/Dropbox/Software/Kitty/kitty-icon/kitty-dark.icns /Applications/kitty.app/Contents/Resources/kitty.icns
rm /var/folders/*/*/*/com.apple.dock.iconcache
killall Dock
}
# Delete all node_modules folders in a folder and subfolders
function deleteNodeModules () {
find . -name "node_modules" -type d -exec rm -rf '{}' +
}
function homebrewBackup () {
cd ~/.dotfiles/
brew bundle dump --describe -f
}
function homebrewRestore () {
brew bundle --file ~/.dotfiles/Brewfile
}
function pythonBackup () {
pip freeze > ~/.dotfiles/python/pip-requirements.txt
}
function pythonRestore () {
pip install -r ~/.dotfiles/python/pip-requirements.txt
}
# Encode images in Base64
encodeBase64() {
uuencode -m $1 /dev/stdout | sed '1d' | sed '$d'
}
# Create a data URL from a file
dataurl() {
local mimeType=$(file -b --mime-type "$1")
if [[ $mimeType == text/* ]]; then
mimeType="${mimeType};charset=utf-8"
fi
echo "data:${mimeType};base64,$(openssl base64 -in "$1" | tr -d '\n')"
}
# Server
server() {
browser-sync start --server --files "**"
}
# Determine size of a file or total size of a directory
fs() {
if du -b /dev/null > /dev/null 2>&1; then
local arg=-sbh
else
local arg=-sh
fi
if [[ -n "$@" ]]; then
du $arg -- "$@"
else
du $arg .[^.]* *
fi
}
# Manually remove a downloaded app or file from the quarantine
unquarantine() {
for attribute in com.apple.metadata:kMDItemDownloadedDate com.apple.metadata:kMDItemWhereFroms com.apple.quarantine; do
xattr -r -d "$attribute" "$@"
done
}
# fe [FUZZY PATTERN] - Open the selected file with the default editor
# - Bypass fuzzy finder if there's only one match (--select-1)
# - Exit if there's no match (--exit-0)
fe() {
IFS=$'\n' files=($(fzf-tmux --query="$1" --multi --select-1 --exit-0))
[[ -n "$files" ]] && ${EDITOR:-vim} "${files[@]}"
}
# Modified version where you can press
# - CTRL-O to open with `open` command,
# - CTRL-E or Enter key to open with the $EDITOR
fo() {
IFS=$'\n' out=("$(fzf-tmux --query="$1" --exit-0 --expect=ctrl-o,ctrl-e)")
key=$(head -1 <<< "$out")
file=$(head -2 <<< "$out" | tail -1)
if [ -n "$file" ]; then
[ "$key" = ctrl-o ] && open "$file" || ${EDITOR:-vim} "$file"
fi
}
# fcd - cd into directory
fcd() {
cd $(find * -type d | fzf --preview 'tree -C {} | head -50')
}
# fhcd Jump to home directory and search for directories
fhcd() {
cd $HOME
cd $(find * -type d | fzf --preview 'tree -C {} | head -50')
}
# fdr - cd to selected parent directory
fdr() {
local declare dirs=()
get_parent_dirs() {
if [[ -d "${1}" ]]; then dirs+=("$1"); else return; fi
if [[ "${1}" == '/' ]]; then
for _dir in "${dirs[@]}"; do echo $_dir; done
else
get_parent_dirs $(dirname "$1")
fi
}
local DIR=$(get_parent_dirs $(realpath "${1:-$(pwd)}") | fzf-tmux --tac)
cd "$DIR"
}
# Find in files with ripgrep and fzf and open on that line
# -> Works together with Vim Plugin bogado/file-line
frg() {
file=$(rg . --line-number | fzf | cut -d: -f1 -f2)
if [ "$file" != "" ]
then
nvim $file
fi
}
# fkill - kill process
fkill() {
pid=$(ps -ef | sed 1d | fzf -m | awk '{print $2}')
if [ "x$pid" != "x" ]
then
kill -${1:-9} $pid
fi
}
# fco - checkout git branch/tag
fco() {
local tags branches target
tags=$(
git tag | awk '{print "\x1b[31;1mtag\x1b[m\t" $1}') || return
branches=$(
git branch --all | grep -v HEAD |
sed "s/.* //" | sed "s#remotes/[^/]*/##" |
sort -u | awk '{print "\x1b[34;1mbranch\x1b[m\t" $1}') || return
target=$(
(echo "$tags"; echo "$branches") |
fzf-tmux -- --no-hscroll --ansi +m -d "\t" -n 2) || return
git checkout $(echo "$target" | awk '{print $2}')
}
# fcoc - checkout git commit
fcoc() {
local commits commit
commits=$(git log --pretty=oneline --abbrev-commit --reverse) &&
commit=$(echo "$commits" | fzf --tac +s +m -e) &&
git checkout $(echo "$commit" | sed "s/ .*//")
}
# fshow - git commit browser
fshow() {
git log --graph --color=always \
--format="%C(auto)%h%d %s %C(black)%C(bold)%cr" "$@" |
fzf --ansi --no-sort --reverse --tiebreak=index --bind=ctrl-s:toggle-sort \
--bind "ctrl-m:execute:
(grep -o '[a-f0-9]\{7\}' | head -1 |
xargs -I % sh -c 'git show --color=always % | less -R') << 'FZF-EOF'
{}
FZF-EOF"
}
# Search z history with fzf
fz() {
[ $# -gt 0 ] && _z "$*" && return
cd "$(_z -l 2>&1 | fzf --height 40% --nth 2.. --reverse --inline-info +s --tac --query "${*##-* }" | sed 's/^[0-9,.]* *//')"
}
# Browse Brave history
fbh() {
local cols sep
cols=$(( COLUMNS / 3 ))
sep='{{::}}'
# Copy History DB to circumvent the lock
# See http://stackoverflow.com/questions/8936878 for the file path
cp -f ~/Library/Application\ Support/BraveSoftware/Brave-Browser/Default/History /tmp/h
sqlite3 -separator $sep /tmp/h \
"select substr(title, 1, $cols), url
from urls order by last_visit_time desc" |
awk -F $sep '{printf "%-'$cols's \x1b[36m%s\n", $1, $2}' |
fzf --ansi --multi | sed 's#.*\(https*://\)#\1#' | xargs open
}
# *** *** Plugins *** ***
# Load Antigen plugin manager
source ~/.dotfiles/.antigen/antigen.zsh
# Load the oh-my-zsh library
antigen use oh-my-zsh
# Bundles from the default repo
antigen bundle brew
antigen bundle bundler
antigen bundle colored-man-pages
antigen bundle colorize
antigen bundle docker
antigen bundle dotenv
antigen bundle extract
antigen bundle fzf
antigen bundle gem
antigen bundle gh
antigen bundle git
antigen bundle git-extras
antigen bundle gitignore
antigen bundle gulp
antigen bundle history-substring-search
antigen bundle jira
antigen bundle man
antigen bundle node
antigen bundle npm
antigen bundle pip
antigen bundle pyenv
antigen bundle python
antigen bundle rsync
antigen bundle ssh-agent
antigen bundle sudo
antigen bundle tmux
antigen bundle tmux-cssh
antigen bundle tmuxinator
antigen bundle vagrant
antigen bundle virtualenv
antigen bundle yarn
antigen bundle z
antigen bundle zsh-interactive-cd
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-syntax-highlighting
# Tell Antigen that youre done
antigen apply
# Additional zsh plugins
fpath=(~/.zsh.d/ $fpath)
# *** *** Aliases *** ***
# ZSH
alias zshconfig="vim $HOME/.zshrc"
alias reload="source $HOME/.zshrc"
# Folders
alias ...='cd ../..'
alias ..='cd ..'
alias cd..='cd ..'
alias ls='eza --git --group-directories-first --icons'
alias ll='eza -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"' # 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 gho='$(git remote -v | grep github | sed -e "s/.*git\:\/\/\([a-z]\.\)*/\1/" -e "s/\.git$//g" -e "s/.*@\(.*\)$/\1/g" | tr ":" "/" | tr -d "\011" | sed -e "s/^/open http:\/\//g")'
alias gl='git pull'
alias glr='git pull --rebase'
alias glu='git config user.name "Stefan Imhoff" && git config user.email "gpg@kogakure.8shield.net" && git config user.signingkey "7A7253E8!";'
alias glx='git config user.name "Stefan Imhoff" && git config user.email "stefan.imhoff@xing.com &&" && git config user.signingkey "73C3E2E3!";'
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 grm="git status | grep deleted | awk '{print \$3}' | xargs git rm"
alias gru='git remote update'
alias gsb='git show-branch'
alias gsl='git submodule foreach git pull'
alias gsquashall='merge_base_commit=$(git merge-base `git symbolic-ref -q HEAD` master); git rebase -i $merge_base_commit'
alias gst='git status -sb'
alias gsu='git submodule update'
alias gu='git up'
alias gw='git whatchanged'
alias gwp='git whatchanged -p'
alias lg='lazygit'
alias gw='git worktree'
alias gwl='git worktree list'
alias gwa='git worktree add' # <folder> <branch/hash>
alias gwr='git worktree remove' # <path/name>
alias gcrb='git branch --sort=-committerdate | fzf --header "Checkout Recent Branch" --preview "git diff --color=always {1}" --pointer="" | xargs git checkout '
# Vim
alias v='vim'
if type nvim > /dev/null 2>&1; then
alias vim='nvim'
fi
# Homebrew
alias bi='brew install'
# Tmux
alias t='tmux'
alias mux="tmuxinator"
alias ms="mux start"
alias tn="tmux new -s $(pwd | sed 's/.*\///g')"
# Bat
alias cat="bat"
# TLDR
alias tldrf='tldr --list --single-column | fzf --preview "tldr --color=always {1}" --preview-window=right,70% | xargs tldr'
# iA Writer
alias ia='open $1 -a /Applications/iA\ Writer.app'
# Dotfiles folder
alias dotfiles="cd $HOME/.dotfiles"
# iCloud
alias icloud="cd $HOME/Library/Mobile\ Documents/com~apple~CloudDocs"
# Pipe my public key to my clipboard
alias pubkey="more ~/.ssh/id_rsa.pub | pbcopy | echo '=> Public key copied to pasteboard.'"
# Get week number
alias week='date +%V'
# Stopwatch
alias timer='echo "Timer started. Stop with Ctrl-D." && date && time cat && date'
# IP addresses
alias ip="dig +short myip.opendns.com @resolver1.opendns.com"
# Flush Directory Service cache
alias flush="dscacheutil -flushcache && killall -HUP mDNSResponder"
# Recursively delete `.DS_Store` files
alias cleanup="find . -type f -name '*.DS_Store' -ls -delete"
# Clear the screen
alias c="clear"
# Empty the Trash on all mounted volumes and the main HDD
# Also, clear Apples System Logs to improve shell startup speed
alias emptytrash="sudo rm -rfv /Volumes/*/.Trashes; sudo rm -rfv ~/.Trash; sudo rm -rfv /private/var/log/asl/*.asl"