blob: a593fed59ae7c1e10a00fa70676037ede91a7cd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
pkgs:
let
isDarwin = builtins.currentSystem == "x86_64-darwin";
platformAliases =
if isDarwin then ../../platforms/darwin/aliases.nix
else ../../platforms/linux/aliases.nix;
in
{
programs.zsh = {
enable = true;
enableCompletion = true;
enableAutosuggestions = true;
autocd = true;
dotDir = ".config/zsh";
history = {
path = "$HOME/.cache/zsh/history";
size = 10000;
save = 10000;
};
shellAliases = import ../aliases.nix // import platformAliases;
defaultKeymap = "viins";
initExtraBeforeCompInit = builtins.readFile ./precomp.zshrc;
initExtra = builtins.readFile ./postcomp.zshrc;
sessionVariables = rec {
PROMPT="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b ";
NVIM_TUI_ENABLE_TRUE_COLOR = "1";
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=3";
DEV_ALLOW_ITERM2_INTEGRATION = "1";
EDITOR = "vim";
VISUAL = EDITOR;
GIT_EDITOR = EDITOR;
GOPATH = "$HOME";
PATH = "$HOME/.emacs.d/bin:$HOME/bin:$PATH";
};
# envExtra
# profileExtra
# loginExtra
# logoutExtra
# localVariables
};
}
|