Last active
February 17, 2017 20:22
-
-
Save jhonnymoreira/5994b0cb76eff8c9705cf78eced57d4b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
" No compatibility with `vi` | |
set nocompatible | |
set encoding=utf-8 | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
" Plugins and Bundles used | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'editorconfig/editorconfig-vim' | |
Plugin 'ctrlpvim/ctrlp.vim' | |
Plugin 'vim-airline/vim-airline' | |
Plugin 'morhetz/gruvbox' | |
Plugin 'vim-utils/vim-husk' | |
Plugin 'mattn/emmet-vim' | |
Plugin 'lilydjwg/colorizer' | |
Plugin 'tssm/fairyfloss.vim' | |
Plugin 'herrbischoff/cobalt2.vim' | |
Plugin 'vim-airline/vim-airline-themes' | |
Plugin 'pangloss/vim-javascript' | |
Plugin 'maxmellon/vim-jsx-pretty' | |
Plugin 'altercation/vim-colors-solarized' | |
Bundle 'keith/rspec.vim' | |
Bundle 'vim-ruby/vim-ruby' | |
call vundle#end() | |
set wildignore+=node_modules/*,*.swp,public/*,tmp/* | |
let g:ctrlp_custom_ignore = 'node_modules\|DS_Store\|git\|tmp\|public\|swp' | |
set laststatus=2 | |
let g:airline_powerline_fonts = 0 | |
let g:airline_right_sep = '' | |
let g:airline_left_sep = '' | |
let g:airline_theme='wombat' | |
let g:cssColorVimDoNotMessMyUpdatetime = 1 | |
set backspace=indent,eol,start | |
set splitright | |
set splitbelow | |
syntax on | |
filetype on | |
filetype indent on | |
filetype plugin on | |
set number | |
set expandtab | |
set tabstop=2 | |
set softtabstop=0 | |
set shiftwidth=2 | |
set autoindent | |
set cursorline | |
set colorcolumn=80 | |
if has('gui_running') | |
set fu | |
set guifont=Monaco:h16 | |
set guioptions-=r | |
set guioptions-=L | |
set background=dark | |
colorscheme solarized | |
else | |
set term=screen-256color | |
colorscheme gruvbox | |
set background=dark | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment