ログインユーザーのrootでやること
$ git clone git@github.com:kenmori/dotfiles2.git ~/dotfiles2 --recursive
or
$ git clone https://github.com/kenmori/dotfiles2.git
$ sh ~/dotfiles2/setup.sh
必須
$HOME
で
oh-my-zsh
・・・zshを使いやすくしてくれる(カレントディレクトリの表示とか)
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
街灯のところはデフォルトでiterm2を始めた時zhrcを読みに行き、更新コマンドを叩いている
neoBundle
・・・vimrc内でプラグインを管理インストールするためのもの
$ curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh > install.sh
$ sh ./install.sh
see: https://github.com/Shougo/neobundle.vim
.vimrcで呼ばれるneoBundleと同じようなvimプラグイン管理
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
sh実行で書かれている.vimrc
に貼り付けるべき記述をコピペ
source dotfiles2/.vimrc
vim dotfiles2
if open vim run
:NeoBundleInstall
:NeoBundleUpdate
install Homebrew https://brew.sh/index_ja
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew
をinstall
時に権限関係でエラーが出たら
【解決】HomeBrewをインストールした際に権限エラーでる「When you install HomeBrew, the console might show you fllowing code」
brew install vim
アップデートの確認
もし古いvimをインストールして使えないプラグインが出てきたら .bashrcと.zhrcに以下を追加
export PATH="/usr/local/bin:$PATH
if [Error: No devel block is defined for vim] run
brew install -v --fresh vim
確認
echo $PATH | tr ":" "\n"
Homebrewを使っていると/usr/binの前を/usr/local/binにしないと新しいvimが更新されない →優先を変える
sudo vim /etc/paths
/usr/bin
/bin
/usr/sbin
/sbin
/usr/local/bin
を
/usr/local/bin
/usr/local/sbin ついでに足す
/usr/bin
/bin
/usr/sbin
/sbin
にする 変わったことを確認
echo $PATH | tr ":" "\n"
brewをアップデート
brew update && brew upgrade
デフォルトをbrewでinstallしたzshに変える
brew install zsh
cat /etc/shells
シェルの確認 brewに追加したものはusr/local/配下になるのでpashを通す
ダメだった場合
brew uninstall --force vim
brew cleanup --force -s vim
brew prune
brew install vim
zshにする zshのパスを確認。デバイスのUserNameにする /User/[UserHome]/
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
テーマを変える .zshrcに
export ZSH_THEME=”テーマ名”
brew install hub
tmuxをinstall
brew install tmux
zsh-completions
brew install zsh-completions
.zshrc
fpath=(/path/to/homebrew/share/zsh-completions $fpath)
autoload -U compinit
compinit -u
.zshrc #plugins=(git) plugins=(git ruby osx bundler brew rails emoji-clock)
refrence https://1000ch.net/posts/2015/dotfiles.html http://d.hatena.ne.jp/amidaike/20130304/1362333675