Skip to content

Commit

Permalink
ysetup alias
Browse files Browse the repository at this point in the history
  • Loading branch information
macalinao committed Sep 18, 2023
1 parent dfe8f9d commit de927e5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nix/home/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@
sessionVariables = {
DOTFILES = "${config.home.homeDirectory}/dotfiles";
EDITOR = "${pkgs.vim}/bin/vim";
# If your computer is in a different language, the terminal may break without this line
LC_ALL = "en_US.UTF-8";
};

Expand All @@ -171,8 +172,8 @@
gd = "git diff";
gs = "gst";

ls = "eza";
l = "eza -lah";
ls = "${pkgs.eza}/bin/eza";
l = "${pkgs.eza}/bin/eza -lah";

x = "exit";
c = "clear";
Expand All @@ -185,6 +186,7 @@
localip =
"ifconfig | grep -Eo 'inet (addr:)?([0-9]*.){3}[0-9]*' | grep -Eo '([0-9]*.){3}[0-9]*' | grep -v '127.0.0.1'";
funky = "sfxl fortnite";
ysetup = "yarn set version canary";
ysdk = "yarn dlx @yarnpkg/sdks vscode";
};

Expand Down

0 comments on commit de927e5

Please sign in to comment.