summaryrefslogtreecommitdiffstats
path: root/zsh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'zsh.nix')
-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;
+ };
+}