Add .bin, .local/bin to path, turn off autosuggest (we have atuin)
This commit is contained in:
parent
e70ca1e87a
commit
23ab34ae69
3
zsh.nix
3
zsh.nix
|
@ -6,13 +6,14 @@
|
||||||
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autosuggestion.enable = true;
|
autosuggestion.enable = false;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
enableVteIntegration = true;
|
enableVteIntegration = true;
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
. "$HOME/.cargo/env"
|
. "$HOME/.cargo/env"
|
||||||
export GUIX_PROFILE="/home/nora/.config/guix/current"
|
export GUIX_PROFILE="/home/nora/.config/guix/current"
|
||||||
. "$GUIX_PROFILE/etc/profile"
|
. "$GUIX_PROFILE/etc/profile"
|
||||||
|
export PATH="$HOME/.bin:$HOME/.local/bin:$PATH"
|
||||||
fortune
|
fortune
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue