summaryrefslogtreecommitdiffstats
path: root/zsh.nix
diff options
context:
space:
mode:
authorSkullheadx <admonty1@gmail.com>2026-06-29 11:17:12 -0400
committerSkullheadx <admonty1@gmail.com>2026-06-29 11:17:12 -0400
commit02e78ddd47a8fffc62216d69befc47ceb098a9c7 (patch)
tree2784ee7405c5543dc70260e48bb7169cf1350ed0 /zsh.nix
parentadd pass and gnupg (diff)
downloadnixos-02e78ddd47a8fffc62216d69befc47ceb098a9c7.tar.gz
nixos-02e78ddd47a8fffc62216d69befc47ceb098a9c7.tar.bz2
nixos-02e78ddd47a8fffc62216d69befc47ceb098a9c7.zip
fix nvim darwin
Diffstat (limited to '')
-rw-r--r--zsh.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/zsh.nix b/zsh.nix
new file mode 100644
index 0000000..4c8154a
--- /dev/null
+++ b/zsh.nix
@@ -0,0 +1,16 @@
+{
+ config,
+ pkgs,
+ ...
+}: {
+ programs.zsh = {
+ enable = true;
+ enableAutosuggestions = true;
+ enableBashCompletion = true;
+ enableCompletion = true;
+ enableFastSyntaxHighlighting = true;
+ enableFzfCompletion = true;
+ enableFzfGit = true;
+ enableFzfHistory = true;
+ };
+}