Last active
January 29, 2026 08:39
-
-
Save leshikus/4876adca17f55652c01c939632296c72 to your computer and use it in GitHub Desktop.
set env in wsl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # specific settings go here | |
| export HTTPS_PROXY="$https_proxy" | |
| export EDITOR=vim | |
| cd | |
| export PS1="\[\033]0;$TITLEPREFIX:$PWD\007\]\n\[\033[32m\]\u@\h \[\033[35m\]$MSYSTEM \[\033[33m\]\w\[\033[36m\] `pwd -P`\[\033[0m\]\n$ " | |
| cat <<EOF >.vimrc | |
| syntax on | |
| set tabstop=4 expandtab | |
| EOF | |
| git config --global user.email "alexei.fedotov@gmail.com" | |
| git config --global user.name "Alexei Fedotov" | |
| git config --global commit.gpgsign true | |
| gpg --import <file> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment