Skip to content

Latest commit

 

History

History
78 lines (56 loc) · 1.86 KB

README.md

File metadata and controls

78 lines (56 loc) · 1.86 KB

OSX Dev Developement

Fist clone and cd to dotfiles

$ git clone [email protected]:ibotdotout/dotfiles.git dotfiles
$ cd dotfiles

Automate Install packages & Link all dotfiles

  • Run all setup by install script
$ ./install

Manual

Install packages & app via Homebrew by Brewfile

  1. Install brew

    $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  2. Install brew bundle

    $ brew tap Homebrew/bundle
  3. Install all packages & app from Brewfile

    $ brew bundle
    # To install work related packages
    $ brew bundle --file Brewfile.work

Link dotfiles by dotbot

  1. Link dotfiles

    $ ./dotup

Install Vim plugins by vim-plug

  1. Install vim-plug

    $ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  2. Install vim plugin via vim-plug from .vimrc

    $ vim +PlugInstall +qall

Install fzf useful key bindings and fuzzy completion

```sh
brew install fzf

# To install useful key bindings and fuzzy completion:
$(brew --prefix)/opt/fzf/install
```

References