removed not working plugins and added colorls alias
This commit is contained in:
parent
0c2e964611
commit
ed43aa7e14
|
@ -14,17 +14,23 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = with pkgs.fishPlugins; [
|
home.packages = with pkgs.fishPlugins; [
|
||||||
autopair
|
forgit
|
||||||
colored-man-pages
|
sponge
|
||||||
forgit
|
];
|
||||||
sponge
|
|
||||||
];
|
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
fish = {
|
fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
shellInit = "zoxide init fish | source";
|
shellInit = "zoxide init fish | source";
|
||||||
|
shellAliases = {
|
||||||
|
vim = "nvim";
|
||||||
|
ls = "colorls";
|
||||||
|
l = "colorls -l";
|
||||||
|
la = "colorls -a";
|
||||||
|
lla = "colorls -la";
|
||||||
|
l = "colorls --tree";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
starship = {
|
starship = {
|
||||||
|
|
|
@ -21,6 +21,7 @@ in {
|
||||||
tree
|
tree
|
||||||
ripgrep
|
ripgrep
|
||||||
fzf
|
fzf
|
||||||
|
colorls
|
||||||
];
|
];
|
||||||
|
|
||||||
wyrdgard = {
|
wyrdgard = {
|
||||||
|
|
Loading…
Reference in a new issue