fix zsh completions

This commit is contained in:
willemml 2023-03-13 13:44:28 -07:00
parent 961355f6cc
commit 508896aba5
Signed by: willemml
GPG key ID: C3DE5DF6198DACBD
2 changed files with 5 additions and 0 deletions

View file

@ -99,6 +99,10 @@
enableSyntaxHighlighting = true;
enableVteIntegration = true;
initExtraBeforeCompInit = ''
fpath+=(${config.home.profileDirectory}/share/zsh/site-functions)
'';
history = {
path = "$HOME/.local/zsh/history";
extended = true;

View file

@ -1,6 +1,7 @@
{ pkgs, ... }:
{
environment.pathsToLink = [ "/share/zsh" ];
environment.systemPackages = [ pkgs.coreutils-full ];
environment.variables.LANG = "en_US.UTF-8";
environment.variables.LANGUAGE = "en_US.UTF-8";