Skip to content

Instantly share code, notes, and snippets.

@yoonhoGo
Created March 30, 2020 04:24
Show Gist options
  • Save yoonhoGo/ddb799d31ac4d3c65aa94d985715be2d to your computer and use it in GitHub Desktop.
Save yoonhoGo/ddb799d31ac4d3c65aa94d985715be2d to your computer and use it in GitHub Desktop.
neovim ~/.config/nvim/init.vim
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