2021-02-19 20:44:18 +01:00
|
|
|
{ config, pkgs, lib, ... }:
|
2021-03-13 01:02:50 +01:00
|
|
|
let
|
|
|
|
cfg = config.my.home.zsh;
|
2023-03-08 15:36:27 +01:00
|
|
|
|
|
|
|
# Have a nice relative path for XDG_CONFIG_HOME, without leading `/`
|
|
|
|
relativeXdgConfig =
|
|
|
|
let
|
|
|
|
noHome = lib.removePrefix config.home.homeDirectory;
|
|
|
|
noSlash = lib.removePrefix "/";
|
|
|
|
in
|
|
|
|
noSlash (noHome config.xdg.configHome);
|
2021-03-13 01:02:50 +01:00
|
|
|
in
|
2021-02-19 19:44:09 +01:00
|
|
|
{
|
2023-02-22 17:00:26 +01:00
|
|
|
options.my.home.zsh = with lib; {
|
|
|
|
enable = my.mkDisableOption "zsh configuration";
|
2023-02-22 17:04:20 +01:00
|
|
|
|
2023-02-22 17:09:45 +01:00
|
|
|
launchTmux = mkEnableOption "auto launch tmux at shell start";
|
2021-03-13 01:02:50 +01:00
|
|
|
};
|
|
|
|
|
2022-03-02 16:59:26 +01:00
|
|
|
config = lib.mkIf cfg.enable {
|
2022-03-02 17:01:11 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
zsh-completions
|
|
|
|
];
|
|
|
|
|
2022-03-02 16:59:26 +01:00
|
|
|
programs.zsh = {
|
|
|
|
enable = true;
|
2023-03-08 15:36:27 +01:00
|
|
|
dotDir = "${relativeXdgConfig}/zsh"; # Don't clutter $HOME
|
2022-03-02 16:59:26 +01:00
|
|
|
enableCompletion = true;
|
2021-02-19 19:44:09 +01:00
|
|
|
|
2022-03-02 16:59:26 +01:00
|
|
|
history = {
|
|
|
|
size = 500000;
|
|
|
|
save = 500000;
|
2023-03-08 14:40:55 +01:00
|
|
|
extended = true;
|
2023-03-08 14:41:26 +01:00
|
|
|
expireDuplicatesFirst = true;
|
2022-03-02 16:59:26 +01:00
|
|
|
ignoreSpace = true;
|
|
|
|
ignoreDups = true;
|
2023-03-11 22:54:18 +01:00
|
|
|
share = false;
|
2022-03-02 16:59:26 +01:00
|
|
|
path = "${config.xdg.dataHome}/zsh/zsh_history";
|
|
|
|
};
|
2021-02-19 19:44:09 +01:00
|
|
|
|
2023-05-03 18:52:31 +02:00
|
|
|
plugins = [
|
2022-03-02 16:59:26 +01:00
|
|
|
{
|
|
|
|
name = "fast-syntax-highlighting";
|
|
|
|
file = "share/zsh/site-functions/fast-syntax-highlighting.plugin.zsh";
|
|
|
|
src = pkgs.zsh-fast-syntax-highlighting;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "agkozak-zsh-prompt";
|
2022-04-11 15:15:36 +02:00
|
|
|
file = "share/zsh/site-functions/agkozak-zsh-prompt.plugin.zsh";
|
|
|
|
src = pkgs.agkozak-zsh-prompt;
|
2022-03-02 16:59:26 +01:00
|
|
|
}
|
|
|
|
];
|
2021-02-19 20:05:15 +01:00
|
|
|
|
2022-03-02 16:59:26 +01:00
|
|
|
# Modal editing is life, but CLI benefits from emacs gymnastics
|
|
|
|
defaultKeymap = "emacs";
|
2021-02-19 20:16:08 +01:00
|
|
|
|
2022-03-02 16:59:26 +01:00
|
|
|
# Make those happen early to avoid doing double the work
|
2023-02-22 17:04:20 +01:00
|
|
|
initExtraFirst = ''
|
|
|
|
${
|
|
|
|
lib.optionalString cfg.launchTmux ''
|
|
|
|
# Launch tmux unless already inside one
|
|
|
|
if [ -z "$TMUX" ]; then
|
|
|
|
exec tmux new-session
|
|
|
|
fi
|
|
|
|
''
|
|
|
|
}
|
|
|
|
'';
|
2021-09-30 15:34:16 +02:00
|
|
|
|
2023-02-08 15:43:39 +01:00
|
|
|
initExtra = ''
|
|
|
|
source ${./completion-styles.zsh}
|
|
|
|
source ${./extra-mappings.zsh}
|
|
|
|
source ${./options.zsh}
|
2023-02-08 15:44:20 +01:00
|
|
|
|
|
|
|
# Source local configuration
|
|
|
|
if [ -f "$ZDOTDIR/zshrc.local" ]; then
|
|
|
|
source "$ZDOTDIR/zshrc.local"
|
|
|
|
fi
|
2023-02-08 15:43:39 +01:00
|
|
|
'';
|
2021-02-19 21:56:21 +01:00
|
|
|
|
2022-03-02 16:59:26 +01:00
|
|
|
localVariables = {
|
|
|
|
# I like having the full path
|
|
|
|
AGKOZAK_PROMPT_DIRTRIM = 0;
|
|
|
|
# Because I *am* from EPITA
|
|
|
|
AGKOZAK_PROMPT_CHAR = [ "42sh$" "42sh#" ":" ];
|
|
|
|
# Easy on the eyes
|
|
|
|
AGKOZAK_COLORS_BRANCH_STATUS = "magenta";
|
|
|
|
# I don't like moving my eyes
|
|
|
|
AGKOZAK_LEFT_PROMPT_ONLY = 1;
|
|
|
|
};
|
2021-03-30 23:33:42 +02:00
|
|
|
|
2023-02-12 17:43:55 +01:00
|
|
|
# Enable VTE integration
|
|
|
|
enableVteIntegration = true;
|
2022-03-02 16:59:26 +01:00
|
|
|
};
|
2021-02-19 20:31:25 +01:00
|
|
|
};
|
2021-02-19 19:44:09 +01:00
|
|
|
}
|