Linux
vim 추천글(플러그인)
정든친구
2019. 8. 21. 22:37
https://github.com/kjwon15/vim-transparent
Kjwon15/vim-transparent
Remove all background color on Vim. Contribute to Kjwon15/vim-transparent development by creating an account on GitHub.
github.com
https://github.com/junegunn/vim-plug
junegunn/vim-plug
:hibiscus: Minimalist Vim Plugin Manager. Contribute to junegunn/vim-plug development by creating an account on GitHub.
github.com
*** vim-plug 사용을 위해서는 git 패키지 필요.
$ sudo apt install git
*** .vimrc 파일에 아래 내용 추가
" vim-plugins
" Plugins will be downloaded under the specified directory.
call plug#begin('~/.vim/plugged')
" 컬러스킴의 배경을 투명하게 바꿔주는 플러그인
Plug 'kjwon15/vim-transparent'
" Initialize plugin system
call plug#end()