diff options
author | Linnnus <[email protected]> | 2023-10-08 12:55:36 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-10-08 12:55:36 +0200 |
commit | c868c8a61fd3b9a4b404001aba0c4c6b7318a4a3 (patch) | |
tree | 8ffbaa16af5598027790cb65f9d74b5799b6d851 /home | |
parent | 524ca88b1dc615957de144fc60b77f521f9760af (diff) |
Move to non-declarative iTerm2 configuration
Diffstat (limited to 'home')
-rw-r--r-- | home/iterm2/default.nix | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/home/iterm2/default.nix b/home/iterm2/default.nix index a0edb7e..693e1fb 100644 --- a/home/iterm2/default.nix +++ b/home/iterm2/default.nix @@ -12,9 +12,13 @@ in { config = mkIf isDarwin { programs.iterm2 = { enable = true; - config = { - SoundForEsc = false; - }; + # config = { + # # Use the minimal tab style. + # # See: https://github.com/gnachman/iTerm2/blob/bd40fba0611fa94684dadf2478625f2a93eb6e47/sources/iTermPreferences.h#L29 + # TabStyleWithAutomaticOption = 5; + # }; + + shellIntegration.enableZshIntegration = true; }; }; } |