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
$env:PATH += ";C:\Program Files\Git\mingw64\bin" | |
function Invoke-GitFetchAll | |
{ | |
& git.exe fetch --all | |
} | |
function Invoke-GitStatus | |
{ | |
& git.exe status |
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
# if you want to run this as a script then you have to make sure | |
# you've enabled RemoteSigned scripts with: | |
# Set-ExecutionPolicy RemoteSigned | |
# To run this script do the following: | |
# iwr https://gist.githubusercontent.com/wes566/dd90579b6261fc9a1da92857cdbc910e/raw/bootstrap_dev_machine.ps1 -UseBasicParsing | iex | |
#install chocolatey | |
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex |
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
alias gs='git status' | |
alias ga='git add --all' | |
alias gf='git fetch --all --prune' | |
alias gsu='git submodule sync && git submodule update --init --recursive' | |
alias repos='cd ~/Source/Repos' | |
alias sln='start *.sln' | |
alias startssh='eval `ssh-agent -s` && ssh-add ~/.ssh/id_rsa' | |
alias gt='echo Fetch then show local tags: && git fetch --tags && git tag -l --sort=v:refname' | |
alias gtu='echo Fetch upstream then show local tags: && git fetch --tags upstream && git tag -l --sort=v:refname' | |
alias grt='echo Remote Tags: && git ls-remote --tags | sort -t '"'"'/'"'"' -k 3 -V | awk '"'"'{print $2}'"'"' | grep -v "{}"' |
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
{ | |
"files.trimTrailingWhitespace": true, | |
"editor.renderWhitespace": "all", | |
"editor.trimAutoWhitespace": true, | |
"editor.formatOnSave": true, | |
"editor.rulers": [ 80 ], | |
"editor.minimap.enabled": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"explorer.compactFolders": false | |
} |
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
set shiftwidth=4 softtabstop=4 | |
set expandtab | |
set incsearch ignorecase hlsearch | |
colorscheme elflord | |
set number | |
syntax on | |
set backspace=indent,eol,start | |
set cindent |
NewerOlder