Skyler Grey | 1e2187f | 2023-03-03 22:45:10 +0000 | [diff] [blame^] | 1 | { pkgs, ... }: { |
2 | users.defaultUserShell = pkgs.zsh; | ||||
3 | |||||
4 | programs.zsh = { | ||||
5 | enable = true; | ||||
6 | ohMyZsh = [ "zsh-syntax-highlighting" "git" "git-auto-fetch" "gh" ]; | ||||
7 | autosuggestions = { | ||||
8 | enable = true; | ||||
9 | async = true; | ||||
10 | }; | ||||
11 | syntaxHighlighting.enable = true; | ||||
12 | }; | ||||
13 | } |