Last active
March 4, 2020 21:31
-
-
Save mikedevita/0e5427a70a7ad580d6b16d8099bcce71 to your computer and use it in GitHub Desktop.
This file contains 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
# 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" |
This file contains 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
#!/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