Created
July 4, 2017 13:17
-
-
Save alisdair/3cb64adaaab88dbbbaaaf840a4f01aa1 to your computer and use it in GitHub Desktop.
Basic vimrc
This file contains 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
call plug#begin() | |
Plug 'ctrlpvim/ctrlp.vim' | |
Plug 'editorconfig/editorconfig-vim' | |
Plug 'elixir-lang/vim-elixir' | |
Plug 'ervandew/supertab' | |
Plug 'joukevandermaas/vim-ember-hbs' | |
Plug 'leafgarland/typescript-vim' | |
Plug 'pangloss/vim-javascript' | |
Plug 'tomasr/molokai' | |
Plug 'tpope/vim-commentary' | |
Plug 'tpope/vim-eunuch' | |
Plug 'tpope/vim-sensible' | |
Plug 'tpope/vim-surround' | |
Plug 'tpope/vim-vinegar' | |
call plug#end() | |
colorscheme molokai | |
set hlsearch | |
set linebreak | |
set number | |
set expandtab shiftwidth=2 softtabstop=2 | |
set directory^=$HOME/.vim/tmp// | |
let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard'] | |
let g:ctrlp_use_caching = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment