Created
March 2, 2017 22:58
-
-
Save cpuspellcaster/14530ad1e08a5504bf272d822aeffc7d to your computer and use it in GitHub Desktop.
.vimrc File March 2017
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
| "VimPlug | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'ctrlpvim/ctrlp.vim' | |
| Plug 'airblade/vim-gitgutter' | |
| Plug 'hashivim/vim-terraform' | |
| Plug 'jiangmiao/auto-pairs' | |
| Plug 'w0rp/ale' | |
| call plug#end() | |
| set backspace=indent,eol,start | |
| set ruler | |
| set number | |
| set showcmd | |
| set incsearch | |
| set hlsearch | |
| set cursorline | |
| syntax on | |
| set mouse=a | |
| let g:ale_echo_msg_format = '%linter% says %s' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment