Skip to content

Instantly share code, notes, and snippets.

@mikedevita
Last active March 4, 2020 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikedevita/0e5427a70a7ad580d6b16d8099bcce71 to your computer and use it in GitHub Desktop.
Save mikedevita/0e5427a70a7ad580d6b16d8099bcce71 to your computer and use it in GitHub Desktop.
# 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/mike/.oh-my-zsh"
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="bureau"
DISABLE_UPDATE_PROMPT=true
DISABLE_LS_COLORS="true"
DISABLE_AUTO_TITLE="true"
ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
plugins=(
git
)
source $HOME/.oh-my-zsh/oh-my-zsh.sh
alias zshconfig="vim ~/.zshrc"
alias ohmyzsh="vim ~/.oh-my-zsh"
alias ll="ls -alh"
alias cls="clear"
alias x="exit"
#!/bin/bash
HOMEDIR= $1;
#setup user user
cd "${HOMEDIR}";
git clone git://github.com/robbyrussell/oh-my-zsh.git "${HOMEDIR}/.oh-my-zsh";
wget https://gist.githubusercontent.com/mikedevita/0e5427a70a7ad580d6b16d8099bcce71/raw/fe84e80daa00579087d4c0cbe4e88e6e726acf08/.zshrc -O $HOMEDIR/.zshrc;
#wget https://gist.githubusercontent.com/mikedevita/992a74c8e8276079f58e59d12db93dbc/raw/bdbf0308aa99e625093827b6ce17d8466ce9a20c/.vimrc -O $HOMEDIR/.vimrc;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment