From 02e78ddd47a8fffc62216d69befc47ceb098a9c7 Mon Sep 17 00:00:00 2001 From: Skullheadx Date: Mon, 29 Jun 2026 11:17:12 -0400 Subject: fix nvim darwin --- zsh.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 zsh.nix (limited to 'zsh.nix') 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; + }; +} -- cgit v1.3.1