Browse Source

Add oh my zsh

Signed-off-by: Ein Verne <[email protected]>
pull/4/head
Ein Verne 7 years ago
parent
commit
0252eff743
  1. 4
      .gitmodules
  2. 1
      .oh-my-zsh
  3. 29
      init_install.sh

4
.gitmodules vendored

@ -1,3 +1,7 @@
[submodule ".vim/bundle/Vundle.vim"]
path = .vim/bundle/Vundle.vim
url = https://github.com/VundleVim/Vundle.vim.git
[submodule ".oh-my-zsh"]
path = .oh-my-zsh
url = https://github.com/robbyrussell/oh-my-zsh.git

1
.oh-my-zsh

@ -0,0 +1 @@
Subproject commit 6bad3cb2bf0775db13a52a23d9c574e600b0bf29

29
init_install.sh

@ -0,0 +1,29 @@
#!/bin/bash -
#===============================================================================
#
# FILE: init_install.sh
#
# USAGE: ./init_install.sh
#
# DESCRIPTION:
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: YOUR NAME (),
# ORGANIZATION:
# CREATED: 12/07/2017 08:47:13 PM
# REVISION: ---
#===============================================================================
set -o nounset # Treat unset variables as an error
# install
sudo apt-get install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
chsh -s /bin/zsh
# pyenv
curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
Loading…
Cancel
Save