Skip to content

Instantly share code, notes, and snippets.

View maverickames's full-sized avatar

Matthew Ames maverickames

View GitHub Profile
@maverickames
maverickames / macsetup.sh
Last active November 17, 2021 16:30
Setup Python, Pip, Homebrew
#!/usr/bin/env bash
echo "Installing!!!"
sudo pwd
echo "Installing Homebrew"
echo -ne '\n'|/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
arch_name="$(uname -m)"
# if [[ $OSTYPE == 'darwin'* ]] && [ "${arch_name}" = 'arm64' ]; then
if [ -e /opt/homebrew/bin/brew ]; then
set smartindent
set tabstop=4
set softtabstop=4
set shiftwidth=2
set expandtab
set nocompatible
set ignorecase
set smartcase
set incsearch
set wrapscan
#!/usr/local/bin/python
# ################################################
# Matthew Ames
# Client install script
# ################################################
import os
import errno
# Enviromental Settings
@maverickames
maverickames / vim.py
Last active August 29, 2015 13:57
Install script to setup vim-lite and syntax coloring on freeBSD
#!/usr/local/bin/python
# ################################################
# Matthew Ames
# Vim-light install script
# ################################################
import os
import errno
#from subprocess import call
vimrc = 'https://gist.githubusercontent.com/matthewakacupcake/7106082/raw/ffeaad24deac65873ce769616726e6b78dbd05f4/vimrc'
@maverickames
maverickames / go.py
Last active October 2, 2017 08:59
Go Install script on FreeBSD.
#!/usr/local/bin/python
# ################################################
# Matthew Ames
# Go install script
# Install command
# curl -O https://gist.githubusercontent.com/maverickames/9426462/raw/cc7e6d8d0c25be47104082b7313ce9ebc79cb436/go.py ; python go.py
# ################################################
import os
import errno
@maverickames
maverickames / sublime_user_settings
Last active December 26, 2015 06:19
Sublime User config
{
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"color_scheme": "Packages/flatland/Theme - Flatland/Flatland.tmTheme",
"draw_minimap_border": true,
"draw_white_space": "all",
"fade_fold_buttons": false,
"file_exclude_patterns":
[
"*.sublime-workspace",
@maverickames
maverickames / vimrc
Last active December 26, 2015 06:09
vimrc
set smartindent
set tabstop=4
set shiftwidth=2
set expandtab
set nocompatible
set ignorecase
set smartcase
set incsearch
set wrapscan
set nu