This file contains 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
# Docker Version Manager wrapper for *nix | |
# Implemented as a POSIX-compliant function | |
# Should work on sh, dash, bash, ksh, zsh | |
# To use, source this file from your bash profile | |
begin # This ensures the entire script is downloaded | |
set DVM_SCRIPT_SOURCE $_ | |
# __dvm_has() { | |
# type "$1" > /dev/null 2>&1 |
This file contains 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
Import-Module posh-git | |
Import-Module PSReadline | |
$env:EDITOR = "vim" | |
# aliases | |
Set-Alias open explorer.exe -option AllScope | |
Set-Alias make mingw32-make.exe -option AllScope | |
Set-Alias p packer.exe -option AllScope | |
Set-Alias v vagrant.exe -option AllScope |