cleanup
This commit is contained in:
parent
f1f292bced
commit
c9ddbcbc87
7 changed files with 125 additions and 120 deletions
26
modules/basic-tools/fish.nix
Normal file
26
modules/basic-tools/fish.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue