Skip to content

Instantly share code, notes, and snippets.

View pleasemarkdarkly's full-sized avatar
🎯
Pushing buttons.

pleasemarkdarkly

🎯
Pushing buttons.
  • Earth
View GitHub Profile
#!/bin/bash
# arch https://gist.github.com/474ec0f11836892aacb9e51026f582a2
# https://gist.github.com/5085d10381dde8c21300d65649b9d147
function getSystemInfo(){
wget -O -https://bit.ly/31UIrbw | bash
echo "Environment varables: OS, KERNEL, MACH set"
}
#!/usr/bin/env bash
CSDIR=~/".cs"
VERSION='0.1'
function usage {
printf "Usage: %s: [-i] [-e] [-d csdir] cheatsheet [section]\n" $(basename $0) >&2
}
#!/bin/bash
# os check gist / wget -O -https://bit.ly/31UIrbw | bash
# os check builtin
platform='unknown'
unamestr=`uname`
if [[ "$unamestr" == 'Linux' ]]; then
platform='linux'
elif [[ "$unamestr" == 'Darwin' ]]; then
platform='darwin'
#!/bin/bash
# https://gist.github.com/474ec0f11836892aacb9e51026f582a2
function getSystemInfo(){
wget -O -https://bit.ly/31UIrbw | bash
echo "Environment varables: OS, KERNEL, MACH set"
}
function lowercase(){
U2FsdGVkX1+40IL3mXNZFxFkMUiJmMnlNEsz4uAu2Z22eoSdCZcCeEB4iVchq3Rk
GLRBtOKQnOv1/ThP4oSq/hcKPFQqCeOOZOE/NiIZyF2wXfmMPVg1P7saIX4sZ58l
JRadusq+1iJHVRa1a+X9KvnaX1AeEpQacBpM2q5ZH5HmEuw1h7YwKX5Mj7eBVCe3
KA5GBGPJU5ZljS7ImnN0HhZPjZhqMh8t2e36vxVIYklUrgTb5Fm5X5UtBQp6/bvV
dMDV710EFv4TGymmsH1pvOA4+oVqKb2gAB24FFDY5iyL5LmRWnQ7PqwjGi49/pdG
UAP+C5ZiXak2ro4/98XIE/7EZS123LQkWFWUiU+rpyFIGDJGdBX0P8eonQklHTOf
REsVxtBe6ietvKYUa4ywj4FXoAwiUrxVEBC6iY8TIA5zx8yUBcHw0ddZZZSSSSVD
bpMn5GKNty4+p6ippG4v10D1BaAoqBV3/GGhF2PVRGw5wAapYuqBoowk6TYWzdGr
Xxo8DrLCAOT1Asxn8v3CmsVxXkuoB8WsJ2DfV0ONQcuiFyKxnrp6LXRQK58wN6bg
Ay17IuJ5qQ9Neoag+od/aBqKHE7ia1+hhq2CHs1Ayqk8kRpFyOHNJ9lDhFy3ogbz
@pleasemarkdarkly
pleasemarkdarkly / install_spacevim.sh
Last active November 20, 2020 08:07
Super easy way to go from "What's vim?" to a super full featured set up for js, ts, and editing anywhere.
#!/bin/bash
# Spacevim installer - https://gist.github.com/14722c71c1a1b8dffce6f19f3e147374
# wget -O - https://bit.ly/3mfUJmk | bash
# Spacevim install with config
# includes typescript stuff, dotfiles, spreadsheet
# have a suggestion or addition, let me know
function config () {
#=============================================================================
# dark_powered.toml --- dark powered configuration example for SpaceVim
# Copyright (c) 2016-2020 Wang Shidong & Contributors
# Author: Wang Shidong < wsdjeg at 163.com >
# URL: https://spacevim.org
# License: GPLv3
# Edited by Mark Phillips, in Nano 5.3
# https://gist.github.com/2c5cb4b4b063d4c63004bbda18ec944a
# wget -O - https://bit.ly/3jrzVGM
# wget -o ~/.SpaceVim.d/init.toml https://bit.ly/3jrzVGM
#!/bin/bash
echo "https://gist.github.com/e18bb72fc20992a442099e960656a766"
echo "https://gist.githubusercontent.com/pleasemarkdarkly/e18bb72fc20992a442099e960656a766/raw/bdcee7d8c7079300c48426a8053b3ef6903693bb/after_vim.sh"
echo "wget -O -https://bit.ly/3dDyyn0 | bash"
echo "Fuck it, let's just use this to install spacevim"
curl -sLf https://spacevim.org/install.sh | bash
echo "we need to build and install /root/.SpaceVim/bundle/vimproc.vim/lib/vimproc_unix.so"
#!/bin/bash
# https://gist.github.com/7789a7d7c1d049e23b0c02d3fc600189
# https://gist.githubusercontent.com/pleasemarkdarkly/7789a7d7c1d049e23b0c02d3fc600189/raw/ea9f9838c76586bcaa8e7a135e416e785adfc2f6/install_spacevim.sh
# https://bit.ly/3k9quwN
function update_gist () {
gist-paste ./install_spacevim.sh -u 7789a7d7c1d049e23b0c02d3fc600189
}