Move zsh config to XDG data dir
This commit is contained in:
parent
b7d71c1e69
commit
011b20e05e
|
@ -6,6 +6,13 @@
|
||||||
# enableSyntaxHighlighting = true;
|
# enableSyntaxHighlighting = true;
|
||||||
defaultKeymap = "viins";
|
defaultKeymap = "viins";
|
||||||
|
|
||||||
|
history = {
|
||||||
|
extended = true;
|
||||||
|
ignoreDups = false;
|
||||||
|
size = 100000;
|
||||||
|
path = "${config.xdg.dataHome}/zsh/zsh_history";
|
||||||
|
};
|
||||||
|
|
||||||
plugins = [
|
plugins = [
|
||||||
# {
|
# {
|
||||||
# name = "nix-zsh-shell-integration";
|
# name = "nix-zsh-shell-integration";
|
||||||
|
@ -42,21 +49,6 @@
|
||||||
|
|
||||||
shellAliases = shellOptions.flattened.aliases;
|
shellAliases = shellOptions.flattened.aliases;
|
||||||
|
|
||||||
# initExtra = let
|
|
||||||
# functions = {
|
|
||||||
# # TODO: make 'join' available.
|
|
||||||
# md-to-pdf = join [
|
|
||||||
# "pandoc \"$1\""
|
|
||||||
# "-f gfm"
|
|
||||||
# "-V linkcolor:blue"
|
|
||||||
# "-V geometry:a4paper"
|
|
||||||
# "-V geometry:margin=2cm"
|
|
||||||
# "-V mainfont=\"Droid Sans\""
|
|
||||||
# "--pdf-engine=xelatex"
|
|
||||||
# "-o \"$2\""
|
|
||||||
# ];
|
|
||||||
# };
|
|
||||||
# in ''
|
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
source ${./p10k.zsh}
|
source ${./p10k.zsh}
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in New Issue