Created
March 30, 2020 04:24
-
-
Save yoonhoGo/ddb799d31ac4d3c65aa94d985715be2d to your computer and use it in GitHub Desktop.
Revisions
-
yoonhoGo created this gist
Mar 30, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ call plug#begin('~/.vim/plugged') Plug 'tpope/vim-fugitive' Plug 'tpope/vim-surround' Plug 'scrooloose/nerdtree' Plug 'scrooloose/syntastic' Plug 'airblade/vim-gitgutter' Plug 'vim-airline/vim-airline' Plug 'preservim/nerdcommenter' Plug 'valloric/youcompleteme', { 'do': './install.py' } Plug 'junegunn/fzf' call plug#end() autocmd vimenter * NERDTree set number set ai set si set tabstop=2 set ignorecase set hlsearch set expandtab set fileencodings=utf-8,euc-kr set bs=indent,eol,start set title set showmatch set nowrap set wmnu syntax on nmap <F3> :NERDTree<CR>