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
| curl -s https://api.github.com/orgs/<ORG_NAME>/repos\?per_page\=100 | jq '.[].ssh_url' | xargs -n 1 git clone |
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
| " vim-bootstrap b0a75e4 | |
| "***************************************************************************** | |
| "" Vim-PLug core | |
| "***************************************************************************** | |
| if has('vim_starting') | |
| set nocompatible " Be iMproved | |
| endif | |
| let vimplug_exists=expand('~/.config/nvim/autoload/plug.vim') |
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
| # top-most EditorConfig file | |
| root = true | |
| # Unix-style newlines with a newline ending every file | |
| [*] | |
| end_of_line = lf | |
| insert_final_newline = true | |
| indent_style = space | |
| indent_size = 2 | |
| trim_trailing_whitespace = true |
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
| # Download box from https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/ | |
| # or http://www.fitzweekly.com/2016/04/download-windows-virtual-machine-images.html | |
| Vagrant.configure(2) do |config| | |
| config.vm.box = "IE11Win10" | |
| config.vm.box_url = "MSEdge-Win10TH2.box" | |
| config.vm.synced_folder ".", "/vagrant", disabled: true # if not provisioned? | |
| # config.vm.synced_folder "./ExtraFolder", "c:/ExtraFolder", create: false # if provisioned? | |
| config.ssh.insert_key = false | |
| config.ssh.username = "IEUser" | |
| config.ssh.password = "Passw0rd!" |
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
| https://github.com/rafi/vim-config | |
| with following patch | |
| ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── | |
| modified: config/plugins.yaml | |
| ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── | |
| @ plugins.yaml:245 @ | |
| if: empty($VIM_MINIMAL) | |
| on_cmd: Limelight |
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
| export GOPATH=~/go | |
| export PATH=$PATH:$GOPATH/bin | |
| export PATH=$PATH:$GRADLE_HOME/bin | |
| export PATH=$PATH:$JAVA_HOME/bin | |
| export GREP_COLOR='1;31' | |
| export EDITOR='nvim' | |
| export BROWSER='open -a firefox' | |
| alias la='exa -la --git --group-directories-first --sort=mod' | |
| alias dls='ls -d1 .*/ */' |
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
| # | |
| # ____ ____ ___ __ __ _____ ____ _ ___ | |
| # | \ | \ / _] T__T T| |l j| T / _] | |
| # | o )| D ) / [_| | | || __j | T | | / [_ | |
| # | T| / Y _] | | || l_ | | | l___ Y _] | |
| # | O || \ | [_l ` ' !| _] | | | T| [_ | |
| # | || . Y| T\ / | T j l | || T | |
| # l_____jl__j\_jl_____j \_/\_/ l__j |____jl_____jl_____j | |
| # | |
| # install with: |
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
| #!/usr/bin/env bash | |
| # copy locally first via: curl -o .osx https://gist.github.com/raw/ef4340becd1624d3f041 | |
| # ~/.osx — https://mths.be/osx | |
| # Command-R while booting up | |
| # Launch Terminal | |
| # csrutil disable | |
| # reboot | |
| # - |
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
| # Get Sudo. | |
| if [ $EUID != 0 ]; then | |
| sudo "$0" "$@" | |
| exit $? | |
| fi | |
| # Install Xcode command line tools. | |
| xcode-select --install | |
| # Install Homebrew. |
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
| function _common_section | |
| printf $c1 | |
| printf $argv[1] | |
| printf $c0 | |
| printf ":" | |
| printf $c2 | |
| printf $argv[2] | |
| printf $argv[3] | |
| printf $c0 | |
| printf " $c9| " |
NewerOlder