2024-04-16 12:00:00 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
2023-11-06 23:48:09 +00:00
|
|
|
{
|
|
|
|
programs.zsh = {
|
|
|
|
enable = true;
|
|
|
|
enableCompletion = false;
|
|
|
|
dotDir = ".config/zsh";
|
|
|
|
|
|
|
|
initExtra = ''
|
2024-04-16 12:00:00 +00:00
|
|
|
# Based on https://github.com/rwxrob/dot/blob/f4240010a82609da352b203103ab548f213a4328/.bashrc#L313.
|
|
|
|
clone() {
|
|
|
|
repo_url="$1"
|
|
|
|
|
2024-04-17 07:48:28 +00:00
|
|
|
# Extract the remote domain (e.g. github.com) from the repo URL.
|
|
|
|
domain="''${repo_url#*://}"
|
|
|
|
if [[ "''${domain}" == *@*:* ]]; then
|
|
|
|
# SSH repo URL: domain ends at the colon.
|
|
|
|
domain="''${domain#*@}"
|
|
|
|
domain="''${domain%%:*}"
|
|
|
|
else
|
|
|
|
# HTTPS repo URL: domain ends at the slash.
|
|
|
|
domain="''${domain%%/*}"
|
|
|
|
fi
|
|
|
|
|
2024-04-16 22:04:42 +00:00
|
|
|
# TODO: make it work with multi-level URLS - e.g. https://gitlab.com/a/b/c/d.git
|
2024-04-16 12:00:00 +00:00
|
|
|
|
2024-04-16 22:04:42 +00:00
|
|
|
user_and_repo_name="''${repo_url}"
|
2024-04-17 08:00:00 +00:00
|
|
|
user_and_repo_name="''${user_and_repo_name#git@bitbucket.org:}"
|
2024-04-16 22:04:42 +00:00
|
|
|
user_and_repo_name="''${user_and_repo_name#git@github.com:}"
|
|
|
|
user_and_repo_name="''${user_and_repo_name#git@gitlab.com:}"
|
2024-04-17 08:00:00 +00:00
|
|
|
user_and_repo_name="''${user_and_repo_name#https://bitbucket.org/}"
|
2024-04-16 22:04:42 +00:00
|
|
|
user_and_repo_name="''${user_and_repo_name#https://github.com/}"
|
|
|
|
user_and_repo_name="''${user_and_repo_name#https://gitlab.com/}"
|
2024-04-16 12:00:00 +00:00
|
|
|
|
|
|
|
if [[ "''${user_and_repo_name}" =~ / ]]; then
|
|
|
|
user="''${user_and_repo_name%%/*}"
|
|
|
|
else
|
|
|
|
user="$GITUSER"
|
|
|
|
[[ -z "$user" ]] && user="$USER"
|
|
|
|
fi
|
|
|
|
|
|
|
|
repo_name="''${user_and_repo_name##*/}"
|
|
|
|
repo_name="''${repo_name%.git}"
|
|
|
|
|
2024-04-16 23:24:41 +00:00
|
|
|
user_path="''${REPOS}/''${domain}/''${user}"
|
2024-04-16 12:00:00 +00:00
|
|
|
|
2024-04-16 23:08:13 +00:00
|
|
|
repo_path="''${user_path}/''${repo_name}"
|
2024-04-16 17:05:55 +00:00
|
|
|
|
2024-04-16 23:08:13 +00:00
|
|
|
[[ -d "''${repo_path}" ]] && t "''${repo_path}" && return
|
2024-04-16 12:00:00 +00:00
|
|
|
|
|
|
|
${pkgs.coreutils}/bin/mkdir -p "''${user_path}"
|
2024-04-16 12:00:00 +00:00
|
|
|
pushd "''${user_path}"
|
2024-04-16 12:00:00 +00:00
|
|
|
|
2024-04-24 21:08:38 +00:00
|
|
|
echo ${pkgs.git}/bin/git clone "''${repo_url}" "''${repo_name}"
|
|
|
|
${pkgs.git}/bin/git clone "''${repo_url}" "''${repo_name}"
|
2024-04-16 12:00:00 +00:00
|
|
|
|
2024-04-16 12:00:00 +00:00
|
|
|
popd
|
2024-04-16 23:27:05 +00:00
|
|
|
t "''${repo_path}"
|
2024-04-16 12:00:00 +00:00
|
|
|
}
|
|
|
|
|
2024-05-09 22:57:05 +00:00
|
|
|
git() {
|
|
|
|
if [[ "''${1}" == "root" ]]; then
|
|
|
|
shift
|
|
|
|
|
|
|
|
local ROOT="$(${pkgs.git}/bin/git rev-parse --show-toplevel 2> /dev/null || echo -n .)"
|
|
|
|
|
|
|
|
if [[ $# == 0 ]]; then
|
|
|
|
cd "''${ROOT}"
|
|
|
|
else
|
|
|
|
(cd "''${ROOT}" && eval "''${@}")
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
${pkgs.git}/bin/git "''${@}"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2024-05-09 22:40:30 +00:00
|
|
|
just() {
|
|
|
|
if [[ -f .ignored/justfile ]]; then
|
|
|
|
${pkgs.just}/bin/just --justfile .ignored/justfile "''${@}"
|
|
|
|
else
|
|
|
|
${pkgs.just}/bin/just "''${@}"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2024-05-12 07:25:21 +00:00
|
|
|
til() {
|
|
|
|
if [[ ''${#} < 1 ]]; then
|
|
|
|
echo "No text was provided."
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo ''${1} >> TIL.txt
|
|
|
|
}
|
|
|
|
|
|
|
|
todo() {
|
|
|
|
if [[ ''${#} < 1 ]]; then
|
|
|
|
echo "No text was provided."
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo ''${1} >> TODO.txt
|
|
|
|
}
|
|
|
|
|
2024-05-09 22:19:54 +00:00
|
|
|
ttyper() {
|
|
|
|
command ${pkgs.ttyper}/bin/ttyper --language english1000 --words 50 "''${@}"
|
|
|
|
}
|
|
|
|
|
2023-11-06 23:48:09 +00:00
|
|
|
# Plugins
|
2024-05-05 10:55:58 +00:00
|
|
|
source "''${ZPLUG_REPOS}/joshskidmore/zsh-fzf-history-search/zsh-fzf-history-search.plugin.zsh"
|
2023-11-06 23:48:09 +00:00
|
|
|
source "''${ZPLUG_REPOS}/robbyrussell/oh-my-zsh/plugins/git/git.plugin.zsh"
|
|
|
|
source "''${ZPLUG_REPOS}/robbyrussell/oh-my-zsh/plugins/vi-mode/vi-mode.plugin.zsh"
|
|
|
|
|
|
|
|
# Case insensitive autocompletion.
|
|
|
|
zstyle ":completion:*" matcher-list "" "m:{a-zA-Z}={A-Za-z}" "r:|=*" "l:|=* r:|=*"
|
|
|
|
autoload -Uz compinit && compinit
|
|
|
|
|
|
|
|
bindkey -s ^f "t\n"
|
|
|
|
|
|
|
|
clear-ls-all() {
|
|
|
|
clear
|
2024-05-10 23:50:45 +00:00
|
|
|
ls -al
|
2023-11-06 23:48:09 +00:00
|
|
|
}
|
|
|
|
zle -N clear-ls-all
|
|
|
|
|
|
|
|
clear-git-status() {
|
|
|
|
clear
|
|
|
|
git status -sb .
|
|
|
|
}
|
|
|
|
zle -N clear-git-status
|
|
|
|
|
|
|
|
clear-tree-2() {
|
|
|
|
clear
|
|
|
|
tree -L 2
|
|
|
|
}
|
|
|
|
zle -N clear-tree-2
|
|
|
|
|
|
|
|
clear-tree-3() {
|
|
|
|
clear
|
|
|
|
tree -L 3
|
|
|
|
}
|
|
|
|
zle -N clear-tree-3
|
|
|
|
|
|
|
|
bindkey '^G' clear-git-status
|
|
|
|
# bindkey '^H' clear-tree-3
|
|
|
|
# bindkey '^J' clear-tree-2
|
|
|
|
# bindkey '^K' clear-ls-all
|
|
|
|
|
|
|
|
# auto-completes aliases
|
|
|
|
# enables to define
|
|
|
|
# - normal aliases (completed with trailing space)
|
|
|
|
# - blank aliases (completed without space)
|
|
|
|
# - ignored aliases (not completed)
|
|
|
|
|
|
|
|
# ignored aliases
|
|
|
|
typeset -a ialiases
|
|
|
|
ialiases=()
|
|
|
|
|
|
|
|
ialias() {
|
|
|
|
alias $@
|
|
|
|
args="$@"
|
|
|
|
args=''${args%%\=*}
|
|
|
|
ialiases+=(''${args##* })
|
|
|
|
}
|
|
|
|
|
|
|
|
# blank aliases
|
|
|
|
typeset -a baliases
|
|
|
|
baliases=()
|
|
|
|
|
|
|
|
balias() {
|
|
|
|
alias $@
|
|
|
|
args="$@"
|
|
|
|
args=''${args%%\=*}
|
|
|
|
baliases+=(''${args##* })
|
|
|
|
}
|
|
|
|
|
|
|
|
expand-alias-space() {
|
|
|
|
[[ $LBUFFER =~ "\<(''${(j:|:)baliases})\$" ]]; insertBlank=$?
|
|
|
|
if [[ ! $LBUFFER =~ "\<(''${(j:|:)ialiases})\$" ]]; then
|
|
|
|
zle _expand_alias
|
|
|
|
fi
|
|
|
|
|
|
|
|
zle self-insert
|
|
|
|
|
|
|
|
if [[ "$insertBlank" = "0" ]]; then
|
|
|
|
zle backward-delete-char
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
zle -N expand-alias-space
|
|
|
|
|
|
|
|
bindkey " " expand-alias-space
|
|
|
|
bindkey -M isearch " " magic-space
|
|
|
|
|
|
|
|
alias dea='direnv allow'
|
|
|
|
alias dee='direnv edit'
|
|
|
|
|
2024-05-15 12:49:05 +00:00
|
|
|
ialias cat="bat"
|
2023-11-06 23:48:09 +00:00
|
|
|
ialias cs="create-script"
|
|
|
|
ialias daily="run create-daily next"
|
2024-05-10 23:50:45 +00:00
|
|
|
ialias ls="lsd"
|
2023-11-06 23:48:09 +00:00
|
|
|
ialias run="./run"
|
|
|
|
ialias s="secrets"
|
|
|
|
ialias secrets="doppler --project \"$(whoami)\" run"
|
|
|
|
ialias switch="run nixos nixedo switch"
|
|
|
|
ialias sz="source ~/.config/zsh/.zshrc"
|
|
|
|
ialias tag="tag-release"
|
|
|
|
ialias uncommit="git reset --soft HEAD^";
|
|
|
|
ialias wt="git worktree"
|
2024-05-22 07:51:25 +00:00
|
|
|
ialias vss="LC_ALL=C sort --unique ~/Code/personal/opdavies.nvim/spell/en.utf-8.add --output ~/Code/personal/opdavies.nvim/spell/en.utf-8.add"
|
2024-01-07 22:03:01 +00:00
|
|
|
balias lh3="xdg-open http://localhost:3000"
|
|
|
|
balias lh8="xdg-open http://localhost:8000"
|
2023-11-06 23:48:09 +00:00
|
|
|
|
|
|
|
# tmux
|
|
|
|
alias ta="tmux attach"
|
|
|
|
alias tl="tmux list-sessions"
|
|
|
|
alias tk="tmux kill-session"
|
|
|
|
|
|
|
|
# Docker and Docker Compose.
|
|
|
|
alias dk="docker"
|
|
|
|
alias dkp="docker ps"
|
|
|
|
alias dkpa="docker ps -a"
|
|
|
|
alias dkpaq="docker ps -a -q"
|
|
|
|
alias dkb="docker build -t"
|
|
|
|
alias dks="docker start"
|
|
|
|
alias dkt="docker stop"
|
|
|
|
alias dkrm="docker rm"
|
|
|
|
alias dkri="docker rmi"
|
|
|
|
alias dke="docker exec -ti"
|
|
|
|
alias dkl="docker logs -f"
|
|
|
|
alias dki="docker images"
|
|
|
|
alias dkpu="docker pull"
|
|
|
|
alias dkph="docker push"
|
|
|
|
alias dkbnc="docker build --no-cache -t"
|
|
|
|
alias dkr="docker run --rm"
|
|
|
|
alias dkrti="docker run --rm -ti"
|
|
|
|
alias dkc="docker compose"
|
|
|
|
alias dkcb="docker compose build"
|
|
|
|
alias dkcu="docker compose up"
|
|
|
|
alias dkclean="docker ps -q -a -f status=exited | xargs -r docker rm && docker images -q -f dangling=true | xargs -r docker rmi"
|
|
|
|
|
|
|
|
# Nix and NixOS.
|
|
|
|
alias nx="nix"
|
2024-01-29 07:52:12 +00:00
|
|
|
alias nxb="nix build --json --no-link --print-build-logs"
|
2023-11-06 23:48:09 +00:00
|
|
|
alias nxd="nix develop"
|
|
|
|
alias nxf="nix flake"
|
2024-01-07 22:03:01 +00:00
|
|
|
alias nxfu="nix flake update"
|
2023-11-06 23:48:09 +00:00
|
|
|
alias nxs="nix shell"
|
|
|
|
ialias full-system-clean='nix-collect-garbage -d && sudo nix-collect-garbage -d'
|
|
|
|
ialias full-system-repair='nix-store --verify --check-contents --repair'
|
|
|
|
ialias full-system-upgrade="sudo nixos-rebuild switch --upgrade && nix-env -u '*'"
|
|
|
|
ialias list-system-configurations='\ls -l /nix/var/nix/profiles/system-*-link'
|
|
|
|
ialias local-upgrade="nix-channel --update nixpkgs && nix-env -u '*'"
|
|
|
|
ialias set-default-boot='/run/current-system/bin/switch-to-configuration boot'
|
|
|
|
ialias system-rebuild='sudo nixos-rebuild switch'
|
|
|
|
ialias system-repair='sudo nixos-rebuild switch --repair'
|
|
|
|
ialias system-upgrade-information='sudo nixos-rebuild switch --upgrade dry-build'
|
|
|
|
|
|
|
|
alias tf="terraform"
|
|
|
|
|
2023-12-21 12:00:49 +00:00
|
|
|
# run scripts.
|
|
|
|
alias r="run"
|
|
|
|
alias rc="run composer"
|
|
|
|
alias rd="run drush"
|
|
|
|
alias rdcr="run drush cr"
|
|
|
|
alias rdup="run drush updb -y"
|
|
|
|
alias rdce="run drush config:export -y"
|
|
|
|
alias rdci="run drush config:import -y"
|
|
|
|
alias rduli="run drush uli"
|
|
|
|
|
2023-11-06 23:48:09 +00:00
|
|
|
# Build Configs.
|
2024-01-26 00:59:23 +00:00
|
|
|
ialias build-configs="nix shell nixpkgs#php82 --command ~/Code/github.com/OliverDaviesLtd/build-configs/main/bin/build-configs app:generate"
|
|
|
|
ialias build-configs-update-all="~/Code/github.com/OliverDaviesLtd/build-configs-updater/update.sh"
|
|
|
|
alias bc=build-configs
|
|
|
|
alias bcu=build-configs-update-all
|
2023-11-06 23:48:09 +00:00
|
|
|
|
|
|
|
alias -g A1="| awk '{print \$1}'"
|
|
|
|
alias -g Fj='| jq .'
|
|
|
|
alias -g Fy='| yq .'
|
|
|
|
alias -g G='| grep'
|
|
|
|
alias -g GH='| grep HTTP'
|
|
|
|
alias -g Gi='| grep -i'
|
|
|
|
alias -g H2='| head -n 20'
|
|
|
|
alias -g H='| head'
|
|
|
|
alias -g L='| less'
|
|
|
|
alias -g V='| vim -'
|
|
|
|
alias -g X='| xargs -I1'
|
|
|
|
|
|
|
|
setopt auto_cd
|
|
|
|
setopt auto_pushd
|
|
|
|
setopt pushd_ignore_dups
|
|
|
|
setopt pushdminus
|
|
|
|
'';
|
|
|
|
|
|
|
|
zplug = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
plugins = [
|
|
|
|
{
|
|
|
|
name = "themes/robbyrussell";
|
2024-03-18 20:33:28 +00:00
|
|
|
tags = [ "from:oh-my-zsh" "as:theme" ];
|
2023-11-06 23:48:09 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "plugin/git";
|
2024-03-18 20:33:28 +00:00
|
|
|
tags = [ "from:oh-my-zsh" ];
|
2023-11-06 23:48:09 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "plugin/vi-mode";
|
2024-03-18 20:33:28 +00:00
|
|
|
tags = [ "from:oh-my-zsh" ];
|
2023-11-06 23:48:09 +00:00
|
|
|
}
|
2024-04-19 20:37:39 +00:00
|
|
|
{ name = "joshskidmore/zsh-fzf-history-search"; }
|
2024-03-18 20:33:28 +00:00
|
|
|
{ name = "zsh-users/zsh-completions"; }
|
|
|
|
{ name = "zsh-users/zsh-syntax-highlighting"; }
|
2023-11-06 23:48:09 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|