diff options
author | Alan Pearce | 2020-12-04 14:28:44 +0100 |
---|---|---|
committer | Alan Pearce | 2020-12-04 14:28:44 +0100 |
commit | 47d677141e95adcbc97f46a50f8122ba3ea09be4 (patch) | |
tree | f03ad921968f6e714d2b73da74f6f11f33b59031 /user | |
parent | 4f93a648ece7048ea8723a09b099b191f6c0dd3c (diff) | |
download | nixfiles-47d677141e95adcbc97f46a50f8122ba3ea09be4.tar.lz nixfiles-47d677141e95adcbc97f46a50f8122ba3ea09be4.tar.zst nixfiles-47d677141e95adcbc97f46a50f8122ba3ea09be4.zip |
Fix ghq get creating odd directory structure
Diffstat (limited to 'user')
-rw-r--r-- | user/settings/zsh.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index 84449a05..13bd5fb2 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -216,7 +216,7 @@ in autoload -Uz compinit compinit -C typeset -T GHQ_ROOT ghq_root - export GHQ_ROOT="$HOME/projects:$HOME/go/src:$HOME/quicklisp/local-projects" + export GHQ_ROOT="$HOME/projects" function hist-freq-subcommands () { fc -l -m "$1*" -10000 | cut -d' ' -f4- | sort | uniq -c | sort -g | tail -n100 | less |