From 2333f8d9fe02b1a21fc80f033c568bdfe7ad5fc2 Mon Sep 17 00:00:00 2001 From: octospacc Date: Thu, 25 Aug 2022 22:13:38 +0200 Subject: [PATCH] Upd. --- .dotfiles/exportrc | 3 ++- .dotfiles/functrc | 8 ++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.dotfiles/exportrc b/.dotfiles/exportrc index e9b98bf..fb5007f 100644 --- a/.dotfiles/exportrc +++ b/.dotfiles/exportrc @@ -1,8 +1,9 @@ +export EDITOR=micro + export ANDROID_HOME=$HOME/Android/Sdk export ANDROID_SDK_ROOT=$HOME/Android/Sdk export PATH=$PATH:$ANDROID_HOME/tools export PATH=$PATH:$ANDROID_HOME/platform-tools - export PATH=$PATH:$HOME/.cargo/bin export PATH=$PATH:$HOME/.local/bin diff --git a/.dotfiles/functrc b/.dotfiles/functrc index e398fe0..3ebd051 100644 --- a/.dotfiles/functrc +++ b/.dotfiles/functrc @@ -18,6 +18,10 @@ function cxxr() { function gitacp() { git add . - git commit -m "$1" - git push + git commit -m "$1" && git push } + +function gitacpc() { + git add . + git commit && git push +} \ No newline at end of file