From 83338826d16831cf8be82862ac6aa1c8db1a4422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 30 Jun 2019 16:29:48 +0100 Subject: [PATCH] More zsh config --- nixos/home.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/nixos/home.nix b/nixos/home.nix index 507af86b..a83b097b 100644 --- a/nixos/home.nix +++ b/nixos/home.nix @@ -6,11 +6,22 @@ home-manager.enable = true; zsh = { enable = true; - history.share = true; + history = { + size = 102400; + save = 102400; + ignoreDups = true; + expireDuplicatesFirst = true; + extended = true; + share = true; + }; + enableAutosuggestions = true; + enableCompletion = true; oh-my-zsh = { enable = true; theme = "agnoster"; }; + sessionVariables = { EDITOR="vim"; VISUAL="vim"; PAGER="less"; }; + shellAliases = { tmate = "tmux detach-client -E 'tmate;tmux'"; }; }; firefox.enable = true; chromium.enable = true;