Created
April 4, 2018 03:59
-
-
Save deconstructionalism/d3d95af684a68932f79da57dff20b602 to your computer and use it in GitHub Desktop.
2018-04-03 .vimrc
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
| set mouse=a | |
| set number | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set expandtab | |
| set colorcolumn=80 | |
| set ambiwidth=double | |
| set background=dark | |
| set encoding=utf8 | |
| set t_Co=256 | |
| set laststatus=2 | |
| set belloff=all | |
| set guifont=DroidSansMono_Nerd_Font:h11 | |
| set nocompatible | |
| set showcmd | |
| imap jk <Esc> | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'mattn/emmet-vim' | |
| Plug 'jiangmiao/auto-pairs' | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'jistr/vim-nerdtree-tabs' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'ryanoasis/vim-devicons' | |
| Plug 'morhetz/gruvbox' | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'vim-airline/vim-airline-themes' | |
| if has('nvim') | |
| Plug 'Valloric/YouCompleteMe' | |
| endif | |
| call plug#end() | |
| colorscheme gruvbox | |
| let g:ycm_server_python_interpreter='python2' | |
| let g:airline_theme='gruvbox' | |
| let g:airline#extensions#tabline#formatter='unique_tail_improved' | |
| map <C-T> <plug>NERDTreeTabsToggle<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment