Created
September 26, 2020 05:37
-
-
Save eric-unc/50f0e93d43d330b536bda298881ddb61 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
| set nocompatible | |
| filetype off | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'VundleVim/Vundle.vim' | |
| Plugin 'airblade/vim-gitgutter' | |
| Plugin 'tpope/vim-surround' | |
| Plugin 'scrooloose/nerdtree' | |
| Plugin 'scrooloose/syntastic' | |
| Plugin 'rust-lang/rust.vim' | |
| Plugin 'Valloric/YouCompleteMe' | |
| Plugin 'morhetz/gruvbox' | |
| Plugin 'itchyny/lightline.vim' | |
| call vundle#end() | |
| filetype plugin indent on | |
| syntax on | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| " set expandtab | |
| set number | |
| set encoding=utf-8 " For YouCompleteMe | |
| set laststatus=2 " For lightline.vim | |
| set t_u7= " Weird workaround | |
| set t_RV= | |
| let g:ycm_confirm_extra_conf = 0 | |
| let g:ycm_global_ycm_extra_conf = '~/.ycm_extra_conf.py' | |
| map <C-o> :NERDTreeToggle<CR> | |
| colorscheme morning "gruvbox | |
| set background=light "dark | |
| set statusline+=%#warningmsg# | |
| set statusline+=%{SyntasticStatuslineFlag()} | |
| set statusline+=%* | |
| let g:syntastic_always_populate_loc_list = 1 | |
| let g:syntastic_auto_loc_list = 1 | |
| let g:syntastic_check_on_open = 1 | |
| let g:syntastic_check_on_wq = 0 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment