-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzsh.nix
61 lines (59 loc) · 1.73 KB
/
zsh.nix
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
{ config, pkgs, lib, home, ... }:
let
rga-fzf =
''
rga-fzf() {
RG_PREFIX="rga --files-with-matches"
local file
file="$(
FZF_DEFAULT_COMMAND="$RG_PREFIX '$1'" \
fzf --sort --preview="[[ ! -z {} ]] && rga --pretty --context 5 {q} {}" \
--phony -q "$1" \
--bind "change:reload:$RG_PREFIX {q}" \
--preview-window="70%:wrap"
)" &&
echo "opening $file" &&
xdg-open "$file"
}
'';
vterm-print =
''
vterm_printf(){
if [ -n "$TMUX" ] && ([ "''${TERM%%-*}" = "tmux" ] || [ "''${TERM%%-*}" = "screen" ] ); then
# Tell tmux to pass the escape sequences through
printf "\ePtmux;\e\e]%s\007\e\\" "$1"
elif [ "''${TERM%%-*}" = "screen" ]; then
# GNU screen (screen, screen-256color, screen-256color-bce)
printf "\eP\e]%s\007\e\\" "$1"
else
printf "\e]%s\e\\" "$1"
fi
}
'';
in {
programs.zsh = {
enable = true;
#history.size = 10000;
histSize = 10000;
#enableSyntaxHighlighting = true;
syntaxHighlighting = {
enable = true;
};
enableCompletion = true;
#initExtra = rga-fzf + "\n" + vterm-print;
shellInit = rga-fzf + "\n" + vterm-print + "\n[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh";
promptInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
#oh-my-zsh = {
ohMyZsh = {
enable = true;
#plugins = [ "git-prompt" "fzf" ];
plugins = [ "fzf" ];
#theme = "agnoster";
};
};
#home.file.".p10k.zsh".source = ./.p10k.zsh;
# Is the following necessary?
#home.packages = with pkgs; [
# zsh-completions
#];
}