Skip to content

Instantly share code, notes, and snippets.

@pinpox

pinpox/zsh.nix Secret

Created October 1, 2020 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pinpox/a379e7d230204da3a6f1da1c311dd04e to your computer and use it in GitHub Desktop.
Save pinpox/a379e7d230204da3a6f1da1c311dd04e to your computer and use it in GitHub Desktop.
programs.zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
autocd = true;
dotDir = ".config/zsh";
history = {
expireDuplicatesFirst = true;
ignoreSpace = false;
save = 15000;
share = true;
};
initExtra = "";
plugins = [
{
name = "zsh-abbrev-alias";
file = "abbrev-alias.plugin.zsh";
src = builtins.fetchGit { url = https://github.com/momo-lab/zsh-abbrev-alias; };
}
];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment