본문 바로가기

[라즈베리파이 3B+] vim airline 설치하기

by rudals.kim 2020. 12. 15. 댓글 개
반응형

라즈베리파이에 vim airline을 설치해 보려고 합니다. 

 

홈 디렉토리에서 아래 명령어를 실행하여 Vundle을 설치합니다.

pi@raspberrypi:~ $ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
pi@raspberrypi:~ $ vi .vimrc

 

.vimrc파일에 아래 내용을 복사 해 줍니다.

set nocompatible
set rtp+=~/.vim/bundle/Vundle.vim

let g:airline_powerline_fonts = 1

call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
" Add your plugins below this line
" All of your Plugins must be added before the following line
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
call vundle#end()

 

vim command 모드에서 플러그인을 설치 합니다. 아래쪽에 Done!이 뜰때까지 기다립니다.

:PluginInstall

 

vim을 재시작 해 봅니다. 아래와 같이 airline이 제대로 설치가 되었습니다.

만약 아랫부분이 깨져서 보일경우 Raspberry Pi Configuration의 locale 설정이 UTF-8로 되어 있는지 확인 해 봅니다.

만약 이렇게 했는데도 폰트가 제대로 나오지 않는다면 아래 명령어로 폰트를 설치해 보시기 바랍니다.

# clone
git clone https://github.com/powerline/fonts.git --depth=1
# install
cd fonts
./install.sh
# clean-up a bit
cd ..
rm -rf fonts
반응형

댓글