mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49: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
|
||||
neofetch
|
||||
ranger
|
||||
exa
|
||||
# vhs
|
||||
|
||||
nodejs # required for coc-nvim
|
||||
|
|
|
@ -17,9 +17,7 @@ in
|
|||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||
'';
|
||||
|
||||
|
||||
autocd = true;
|
||||
|
||||
history = {
|
||||
path = "$HOME/.histfile";
|
||||
size = 2000;
|
||||
|
@ -34,6 +32,10 @@ in
|
|||
file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
||||
}
|
||||
];
|
||||
|
||||
shellAliases = {
|
||||
ls = "exa";
|
||||
};
|
||||
};
|
||||
|
||||
home.file.".p10k.zsh" = {
|
||||
|
|
Loading…
Reference in a new issue