Skip to content

Instantly share code, notes, and snippets.

View bdangit's full-sized avatar

Ben Dang bdangit

View GitHub Profile
@bdangit
bdangit / dvm.fish
Last active November 28, 2016 23:47 — forked from 7sDream/dvm.fish
Set up dvm command for fish shell.
# 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
@bdangit
bdangit / Microsoft.PowerShell_profile.ps1
Last active March 31, 2019 13:30
Basic Windows Workstation Configuration
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