This commit is contained in:
Grisha Shipunov 2025-01-26 01:39:08 +01:00
parent f1f292bced
commit c9ddbcbc87
7 changed files with 125 additions and 120 deletions

View file

@ -0,0 +1,26 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
lsd
fzf
grc
fishPlugins.done
fishPlugins.fzf-fish
fishPlugins.tide
fishPlugins.grc
];
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting
'';
shellAliases = {
ls = "lsd --icon=never";
l = "ls -l";
ll = "ls -la";
vim = "nvim";
grep = "grep --color=auto";
};
};
}