Skip to content

Instantly share code, notes, and snippets.

@yoonhoGo
Created March 30, 2020 04:24
Show Gist options
  • Select an option

  • Save yoonhoGo/ddb799d31ac4d3c65aa94d985715be2d to your computer and use it in GitHub Desktop.

Select an option

Save yoonhoGo/ddb799d31ac4d3c65aa94d985715be2d to your computer and use it in GitHub Desktop.

Revisions

  1. yoonhoGo created this gist Mar 30, 2020.
    32 changes: 32 additions & 0 deletions init.vim
    Original 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>