Switch to fish.

This commit is contained in:
2024-09-13 18:19:25 +01:00
parent 79970e1567
commit 2d8f4c56dd
4 changed files with 26 additions and 53 deletions

View File

@@ -1,4 +1,9 @@
{ pkgs, ... }:
{
fish = {
enable = true;
};
git = {
enable = true;
userEmail = "petru@paler.net";
@@ -38,37 +43,4 @@
set -g status-right ""
'';
};
zsh = {
enable = true;
history = {
save = 1000000;
size = 1000000;
};
prezto = {
enable = true;
pmodules = [
"gnu-utility"
"environment"
"terminal"
"editor"
"history"
"directory"
"spectrum"
"utility"
"completion"
"syntax-highlighting"
"prompt"
];
gnuUtility.prefix = "g";
prompt.theme = "pure";
utility.safeOps = false;
syntaxHighlighting.highlighters = [
"main"
"brackets"
"pattern"
"root"
];
};
};
}