Skip to content

Instantly share code, notes, and snippets.

View antonyjohnson-js's full-sized avatar

Antony Johnson I antonyjohnson-js

View GitHub Profile
@antonyjohnson-js
antonyjohnson-js / better_powershell.md
Created May 5, 2023 05:04 — forked from mh-firouzjah/better_powershell.md
how to add zsh-like theme and feature to windows powershell

Better PowerShell

Theme | History | KeyBinding

MyPowershell

in order to make windows powershell more comfortable and add a some theme and features like history binding, auto complete on keypress and so on, if you have used linux teminl wiht zsh for example, we are going to make powershell like that as much as we can.

What we will achieve

@antonyjohnson-js
antonyjohnson-js / git_newrepo
Created April 12, 2022 08:27 — forked from c0ldlimit/git_newrepo
Git: Push a new or existing repo to Github
# Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/c0ldlimit/vimcolors.git
git push -u origin master
# Push an existing repository from the command line