Created
March 30, 2020 04:24
-
-
Save yoonhoGo/ddb799d31ac4d3c65aa94d985715be2d to your computer and use it in GitHub Desktop.
neovim ~/.config/nvim/init.vim
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
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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment