Vim-airline 설치


git client 설치(https://git-scm.com/download/win)

터미널에서
cd %USERPROFILE%\vimfiles\autoload\
curl -O https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

%USERPROFILE%\.vimrc 아래내용 추가
call plug#begin('~/.vim/plugged')
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
call plug#end()
vim 실행
:PlugInstall


터미널에서
git clone https://github.com/VundleVim/Vundle.vim.git %USERPROFILE%\.vim\bundle\Vundle.vim


%USERPROFILE%\.vimrc 아래내용 추가
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
call vundle#end()
filetype plugin indent on
vim 실행
:PluginInstall