enable dircolors
This commit is contained in:
parent
691f361b08
commit
a6d034b370
@ -7,35 +7,37 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
home-manager.users.${myUser} = {
|
home-manager.users.${myUser} = {
|
||||||
programs.starship = {
|
programs = {
|
||||||
enable = true;
|
dircolors.enable = true;
|
||||||
settings = {
|
starship = {
|
||||||
add_newline = false;
|
enable = true;
|
||||||
aws.disabled = true;
|
settings = {
|
||||||
gcloud.disabled = true;
|
add_newline = false;
|
||||||
line_break.disabled = true;
|
aws.disabled = true;
|
||||||
|
gcloud.disabled = true;
|
||||||
|
line_break.disabled = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
zsh = {
|
||||||
|
enable = true;
|
||||||
|
autosuggestion.enable = true;
|
||||||
|
syntaxHighlighting.enable = true;
|
||||||
|
history = {
|
||||||
|
save = 10000;
|
||||||
|
ignoreSpace = true;
|
||||||
|
ignoreDups = true;
|
||||||
|
extended = true;
|
||||||
|
share = true;
|
||||||
|
path = "$HOME/.zsh_history";
|
||||||
|
};
|
||||||
|
shellAliases = {
|
||||||
|
ls = "ls --color=yes";
|
||||||
|
la = "ls -a";
|
||||||
|
ll = "ls -l";
|
||||||
|
lla = "ls -la";
|
||||||
|
|
||||||
programs.zsh = {
|
vim = "nvim";
|
||||||
enable = true;
|
};
|
||||||
autosuggestion.enable = true;
|
|
||||||
syntaxHighlighting.enable = true;
|
|
||||||
history = {
|
|
||||||
save = 10000;
|
|
||||||
ignoreSpace = true;
|
|
||||||
ignoreDups = true;
|
|
||||||
extended = true;
|
|
||||||
share = true;
|
|
||||||
path = "$HOME/.zsh_history";
|
|
||||||
};
|
|
||||||
shellAliases = {
|
|
||||||
ls = "ls --color=yes";
|
|
||||||
la = "ls -a";
|
|
||||||
ll = "ls -l";
|
|
||||||
lla = "ls -la";
|
|
||||||
|
|
||||||
vim = "nvim";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user