memo, taskwarrior: add shell completion
This commit is contained in:
parent
9c905c81ac
commit
7e1e294142
3 changed files with 8 additions and 1 deletions
|
@ -44,6 +44,7 @@ in {
|
|||
"git"
|
||||
"git-flow"
|
||||
"screen"
|
||||
"taskwarrior"
|
||||
"systemd"
|
||||
"tmux"
|
||||
"vi-mode"
|
||||
|
|
|
@ -42,7 +42,8 @@ in
|
|||
|
||||
otpmenu = callPackage ./otpmenu {};
|
||||
|
||||
memo = callPackage ./memo {};
|
||||
# use upstream only for package tests
|
||||
# memo = callPackage ./memo {};
|
||||
|
||||
sononym = callPackage ./sononym {};
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue