feat(zsh): enable auto-completion/suggestions
parent
2b901acd4a
commit
974733dd31
|
@ -3,18 +3,12 @@
|
||||||
{
|
{
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSyntaxHighlighting = true;
|
enableAutosuggestions = true;
|
||||||
|
enableCompletion = true;
|
||||||
history.size = 10000;
|
history.size = 10000;
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
ls = "exa --group-directories-first --git";
|
ls = "exa --group-directories-first --git";
|
||||||
};
|
};
|
||||||
|
|
||||||
oh-my-zsh = {
|
|
||||||
enable = true;
|
|
||||||
plugins = [
|
|
||||||
"vi-mode"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue