blob: 7a7f935cb87e787eb3de9cc761e989d603b2a479 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
{
config,
lib,
pkgs,
...
}:
let
cfg = config.seth.programs.zsh;
in
{
options.seth.programs.zsh = {
enable = lib.mkEnableOption "Zsh configuration";
withPlugins = lib.mkEnableOption "Zsh plugins" // {
default = true;
};
};
config = lib.mkIf cfg.enable {
programs.zsh = lib.mkMerge [
{
enable = true;
completionInit = ''
autoload -Uz bashcompinit compinit
local zdump="${config.xdg.cacheHome}/zsh/zdump"
bashcompinit
compinit -d "$zdump"
if [[ ! "$zdump.zwc" -nt "$zdump" ]]
then
zcompile "$zdump"
fi
unset zdump
'';
defaultKeymap = "emacs";
dotDir = ".config/zsh";
initExtra = ''
if [[ -r "$XDG_CACHE_HOME/p10k-instant-prompt-*.zsh" ]]; then
source "$XDG_CACHE_HOME/p10k-instant-prompt-*.zsh"
fi
autoload -Uz promptinit colors
promptinit
colors
zmodload zsh/zutil
zmodload zsh/complist
zstyle ":completion::*" group-name ""
zstyle ":completion:*" menu "select"
zstyle ":completion:*" squeeze-slashes "true"
zstyle ":completion::*" use-cache "true"
zstyle ":completion::*" cache-path "$zdump"
unsetopt beep
unsetopt hist_beep
unsetopt ignore_braces
unsetopt list_beep
setopt always_to_end
setopt prompt_subst
setopt share_history
# clear backbuffer with ctrl-l
function clear-screen-and-scrollback() {
echoti civis >"$TTY"
printf '%b' '\e[H\e[2J' >"$TTY"
zle .reset-prompt
zle -R
printf '%b' '\e[3J' >"$TTY"
echoti cnorm >"$TTY"
}
zle -N clear-screen-and-scrollback
bindkey '^L' clear-screen-and-scrollback
[[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.p10k.zsh
'';
history = {
expireDuplicatesFirst = true;
path = "${config.xdg.stateHome}/zsh/zsh_history";
save = 1000;
size = 100;
};
}
(lib.mkIf cfg.withPlugins {
plugins = [
{
name = "nix-zsh-completions";
src = pkgs.nix-zsh-completions;
file = "share/zsh/plugins/nix/nix-zsh-completions.plugin.zsh";
}
{
name = "powerlevel10k";
src = pkgs.zsh-powerlevel10k;
file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
}
{
name = "zsh-autopair";
src = pkgs.zsh-autopair;
file = "share/zsh/zsh-autopair/autopair.zsh";
}
{
name = "zsh-completions";
src = pkgs.zsh-completions;
file = "share/zsh-completions/zsh-completions.plugin.zsh";
}
];
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
})
];
};
}
|