mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
fix zsh completions
This commit is contained in:
parent
961355f6cc
commit
508896aba5
2 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Add table
Reference in a new issue