memo, taskwarrior: add shell completion

This commit is contained in:
Ingolf Wagner 2019-12-02 13:03:38 +13:00
parent 9c905c81ac
commit 7e1e294142
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
3 changed files with 8 additions and 1 deletions

View file

@ -44,6 +44,7 @@ in {
"git"
"git-flow"
"screen"
"taskwarrior"
"systemd"
"tmux"
"vi-mode"

View file

@ -42,7 +42,8 @@ in
otpmenu = callPackage ./otpmenu {};
memo = callPackage ./memo {};
# use upstream only for package tests
# memo = callPackage ./memo {};
sononym = callPackage ./sononym {};

View file

@ -37,6 +37,11 @@ in
home-manager.users.mainUser = {
home.file.".zshrc".text = ''
# a fix for https://github.com/NixOS/nixpkgs/issues/27587
autoload -U compinit && compinit
'';
programs.git = {
enable = true;
userName = "Ingolf Wagner";