Skip to content

Instantly share code, notes, and snippets.

View robquinn's full-sized avatar
💭
I love coding

Robert Quinn robquinn

💭
I love coding
  • Russ Lyon Sotheby's International Realty
  • Scottsdale, Arizona
View GitHub Profile
@robquinn
robquinn / new-vm.sh
Last active October 25, 2019 17:18
new-vm.sh
# !/bin/bash
# misc
sudo apt install zsh fonts-powerline
# change to home directory
cd $HOME
# oh-my-zsh
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# zsh-completions
git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/zsh-completions
@robquinn
robquinn / .zshrc
Created October 25, 2019 17:09
.zshrc
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
@robquinn
robquinn / .vimrc
Created October 25, 2019 17:07
.vimrc
""""""""""
"vim plug"
""""""""""
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
call plug#begin('~/.vim/plugged')