diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2024-12-28 02:07:18 -0600 |
|---|---|---|
| committer | ozpv <39195175+ozpv@users.noreply.github.com> | 2024-12-28 02:07:18 -0600 |
| commit | 0c0630bc622b8c007a5a252a2ba32b1e22ab352b (patch) | |
| tree | ff66e317b49584bbb543ee7a0ae24f733b280d03 | |
| parent | b91c620b20019e0602b03f592a041cef22a33b12 (diff) | |
update zsh
| -rw-r--r-- | home.nix | 25 |
1 files changed, 8 insertions, 17 deletions
@@ -40,6 +40,10 @@ programs.zsh = { enable = true; + enableCompletion = true; + autosuggestion.enable = true; + syntaxHighlighting.enable = true; + shellAliases = { cp = "cp -v"; mv = "mv -v"; @@ -47,26 +51,13 @@ mkdir = "mkdir -v -p"; rmdir = "rmdir -v"; ls = "ls -hla --color=auto"; + l = "ls -hla --color=auto"; + ll = "ls -hla --color=auto"; grep = "grep --color=auto"; - vim-basic = "vim"; + bvim = "vim"; vim = "nvim"; }; - plugins = [ - { - name = "zsh-autosuggestions"; - src = fetchGit { - url = "https://github.com/zsh-users/zsh-autosuggestions.git"; - rev = "c3d4e576c9c86eac62884bd47c01f6faed043fc5"; - }; - } - { - name = "zsh-syntax-highlighting"; - src = fetchGit { - url = "https://github.com/zsh-users/zsh-syntax-highlighting.git"; - rev = "e0165eaa730dd0fa321a6a6de74f092fe87630b0"; - }; - } - ]; + history.size = 10000; }; } |
