From 058031ad2902f58d8d3cbc21aeeb477bdb087bda Mon Sep 17 00:00:00 2001 From: ryan4yin Date: Wed, 31 May 2023 16:28:14 +0800 Subject: [PATCH] feat: add alias - http-proxy --- home/common/core.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/common/core.nix b/home/common/core.nix index aadee85b..80d7bee1 100644 --- a/home/common/core.nix +++ b/home/common/core.nix @@ -86,10 +86,10 @@ home.shellAliases = { k = "kubectl"; + vim = "nvim"; urldecode = "python3 -c 'import sys, urllib.parse as ul; print(ul.unquote_plus(sys.stdin.read()))'"; urlencode = "python3 -c 'import sys, urllib.parse as ul; print(ul.quote_plus(sys.stdin.read()))'"; - - vim = "nvim"; + httpproxy = "export https_proxy=http://127.0.0.1:7890; export http_proxy=http://127.0.0.1:7890;"; }; } \ No newline at end of file