Skip to content

Instantly share code, notes, and snippets.

@felipecabargas
Created October 3, 2014 02:46
Show Gist options
  • Save felipecabargas/e3bba928eda8b6f77482 to your computer and use it in GitHub Desktop.
Save felipecabargas/e3bba928eda8b6f77482 to your computer and use it in GitHub Desktop.
Personal Environment Configuration

#Dev Environment Configuration

Hi! Here you have my development environment configuration (with working links).

##Programs:

  • iTerm2
  • MacDown

##Plugins:

  • oh-my-zsh

      curl -L http://install.ohmyz.sh | sh
    
  • tmux

      brew install tmux
    
  • Vim (already installed on OS X)

      vim -v
    
  • teamocil

      gem install teamocil
    
  • pathogen

      mkdir -p ~/.vim/autoload ~/.vim/bundle && \
      curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
    
  • powerline

      mkdir ~/.powerline && cd .powerline/
      git clone https://github.com/erikw/tmux-powerline.git
    
  • ctrl+p

      cd ~/.vim
      git clone https://github.com/kien/ctrlp.vim.git bundle/ctrlp.vim
    
  • nerdtree

      cd ~/.vim/bundle
      git clone https://github.com/scrooloose/nerdtree.git
    
  • colorschemes

      cd ~/.vim/bundle
      git clone [email protected]:dgvigil/vim-colorschemes.git ~/.vim/bundle
      cd vim-colorschemes/ && cp colors/* ~/.vim/colors
    

##Configuration Files:

First: CLONE MASTER REPO

git clone [email protected]:felipecabargas/dotfiles.git
cd dotfiles/
  • zsh

      cp .zshrc ~
    
  • vim

      cp .vimrc ~
    
  • tmux

      cp .tmux.conf ~
    
  • powerline

      cp .tmux-powerlinerc ~
      cp default.sh ~/.powerline/themes/
    
  • teamocil

      cp -r .teamocil/
    

##Themes & Stuff:

  • zsh

      git clone [email protected]:felipecabargas/oh-my-zsh-rubyist-theme.git
      mv path/to/rubyist.zsh-theme ~/.oh-my-zsh/themes/
    
  • iTerm Theme

      git clone https://github.com/felipecabargas/iterm2-flat.git
    

    Installation:

    • Launch iTerm 2. Get the latest version at iterm2.com.
    • Type +,.
    • Navigate to Colors tab.
    • Click on Load Presets.
    • Click on Import.
    • Select the .itermcolors file that you downloaded.
    • Click on Load Presets and choose a color scheme.
  • iTerm Fixes

    • Launch iTerm 2. Get the latest version at iterm2.com.
    • Type +,.
    • Navigate to Profiles tab.
    • Click on General.
    • Fill Send text at start with: tmux attach -t general || tmux new -s general.
    • Go to Terminal
    • Fill Report Terminal Type with: xterm-256color
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment