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"
|
||||||
"git-flow"
|
"git-flow"
|
||||||
"screen"
|
"screen"
|
||||||
|
"taskwarrior"
|
||||||
"systemd"
|
"systemd"
|
||||||
"tmux"
|
"tmux"
|
||||||
"vi-mode"
|
"vi-mode"
|
||||||
|
|
|
@ -42,7 +42,8 @@ in
|
||||||
|
|
||||||
otpmenu = callPackage ./otpmenu {};
|
otpmenu = callPackage ./otpmenu {};
|
||||||
|
|
||||||
memo = callPackage ./memo {};
|
# use upstream only for package tests
|
||||||
|
# memo = callPackage ./memo {};
|
||||||
|
|
||||||
sononym = callPackage ./sononym {};
|
sononym = callPackage ./sononym {};
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,11 @@ in
|
||||||
|
|
||||||
home-manager.users.mainUser = {
|
home-manager.users.mainUser = {
|
||||||
|
|
||||||
|
home.file.".zshrc".text = ''
|
||||||
|
# a fix for https://github.com/NixOS/nixpkgs/issues/27587
|
||||||
|
autoload -U compinit && compinit
|
||||||
|
'';
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "Ingolf Wagner";
|
userName = "Ingolf Wagner";
|
||||||
|
|
Loading…
Reference in a new issue