added plugins to fish, not sure if all of them are working
This commit is contained in:
parent
d64ab56ca0
commit
00606b92ea
7 changed files with 47 additions and 51 deletions
|
@ -14,8 +14,18 @@ in {
|
|||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs.fishPlugins; [
|
||||
autopair
|
||||
colored-man-pages
|
||||
forgit
|
||||
sponge
|
||||
];
|
||||
|
||||
programs = {
|
||||
fish = enabled;
|
||||
fish = {
|
||||
enable = true;
|
||||
shellInit = "zoxide init fish | source";
|
||||
};
|
||||
|
||||
starship = {
|
||||
enable = true;
|
||||
|
@ -53,7 +63,10 @@ in {
|
|||
};
|
||||
|
||||
zoxide = {
|
||||
enable = true;
|
||||
enable = true;
|
||||
options = [
|
||||
"--cmd cd"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue