Skip to content

Instantly share code, notes, and snippets.

@matthew-piziak
Created August 9, 2019 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthew-piziak/8d16ed1f96e717b46a659958424bc816 to your computer and use it in GitHub Desktop.
Save matthew-piziak/8d16ed1f96e717b46a659958424bc816 to your computer and use it in GitHub Desktop.
let
aliases = {
l = "ls --color=tty";
la = "ls -alh --color=tty";
ll = "ls -l --color=tty";
ls = "ls --color=tty";
vim = "nvim";
udm = "udisksctl mount -b";
};
in {
programs.fish.enable = true;
programs.fish.shellAliases = aliases;
programs.bash.shellAliases = aliases;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment