mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-01 12:15:25 +08:00
15 lines
295 B
Nix
15 lines
295 B
Nix
{ pkgs, ... }:
|
|
{
|
|
shellAliases = {
|
|
e = "nvim";
|
|
ee = "nvim \"$(fzf)\"";
|
|
g = "${pkgs.git}/bin/git";
|
|
lg = "lazygit";
|
|
ls = "${pkgs.exa}/bin/exa";
|
|
l = "ls";
|
|
ll = "ls -l";
|
|
lt = "ls --tree";
|
|
# Project tmux.
|
|
pux = "sh -c \"tmux -S $(pwd).tmux attach\"";
|
|
};
|
|
}
|