summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-04-29 20:44:14 +0200
committerChristoph Cullmann <cullmann@kde.org>2024-04-29 20:44:14 +0200
commit593e153a55d43c96278744aae5e47082b0c63a36 (patch)
tree5d91a5475a195c423a0e687def28d01298479490
parent54960fc9f02457f8e5fedcc8d7b0ee0d07a646a9 (diff)
more zsh features
-rw-r--r--common.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/common.nix b/common.nix
index 01898b7..12e97d9 100644
--- a/common.nix
+++ b/common.nix
@@ -490,8 +490,10 @@ in
users.defaultUserShell = pkgs.zsh;
programs.starship.enable = true;
programs.zsh = {
- # zsh wanted
+ # zsh with extras wanted
enable = true;
+ enableCompletion = true;
+ syntaxHighlighting.enable = true;
# some env vars I want in all of my shells
shellInit = ''
@@ -502,8 +504,6 @@ in
# aliases
shellAliases = {
- ll = "ls -l";
-
# system build/update/cleanup
update = "sudo nixos-rebuild switch";
upgrade = "sudo nixos-rebuild switch --upgrade";