mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-15 04:37:21 +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;
|
enableSyntaxHighlighting = true;
|
||||||
enableVteIntegration = true;
|
enableVteIntegration = true;
|
||||||
|
|
||||||
|
initExtraBeforeCompInit = ''
|
||||||
|
fpath+=(${config.home.profileDirectory}/share/zsh/site-functions)
|
||||||
|
'';
|
||||||
|
|
||||||
history = {
|
history = {
|
||||||
path = "$HOME/.local/zsh/history";
|
path = "$HOME/.local/zsh/history";
|
||||||
extended = true;
|
extended = true;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
environment.pathsToLink = [ "/share/zsh" ];
|
||||||
environment.systemPackages = [ pkgs.coreutils-full ];
|
environment.systemPackages = [ pkgs.coreutils-full ];
|
||||||
environment.variables.LANG = "en_US.UTF-8";
|
environment.variables.LANG = "en_US.UTF-8";
|
||||||
environment.variables.LANGUAGE = "en_US.UTF-8";
|
environment.variables.LANGUAGE = "en_US.UTF-8";
|
||||||
|
|
Loading…
Add table
Reference in a new issue