Tools/Vim

    vim 설정

    git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim set encoding=utf-8 set nocompatible filetype off set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' Plugin 'scrooloose/nerdtree' Plugin 'vim-airline/vim-airline' Plugin 'Raimondi/delimitMate' Plugin 'tpope/vim-commentary' call vundle#end() filetype plugin indent on set autoindent set t..