mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
added exa as ls replacement
This commit is contained in:
parent
a474317094
commit
ea13e56046
2 changed files with 5 additions and 2 deletions
|
@ -41,6 +41,7 @@ in
|
||||||
powerline
|
powerline
|
||||||
neofetch
|
neofetch
|
||||||
ranger
|
ranger
|
||||||
|
exa
|
||||||
# vhs
|
# vhs
|
||||||
|
|
||||||
nodejs # required for coc-nvim
|
nodejs # required for coc-nvim
|
||||||
|
|
|
@ -17,9 +17,7 @@ in
|
||||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
||||||
autocd = true;
|
autocd = true;
|
||||||
|
|
||||||
history = {
|
history = {
|
||||||
path = "$HOME/.histfile";
|
path = "$HOME/.histfile";
|
||||||
size = 2000;
|
size = 2000;
|
||||||
|
@ -34,6 +32,10 @@ in
|
||||||
file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
shellAliases = {
|
||||||
|
ls = "exa";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file.".p10k.zsh" = {
|
home.file.".p10k.zsh" = {
|
||||||
|
|
Loading…
Reference in a new issue