Advertisement
widhisec

Vscode

Jan 16th, 2021
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
  2. https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  3.  
  4. call plug#begin('~/.vim/plugged')
  5.  
  6. call plug#end()
  7.  
  8. github.com/rakr/vim-one
  9.  
  10. call plug#begin('~/.vim/plugged')
  11.  
  12. Plug 'rakr/vim-one'
  13.  
  14. call plug#end()
  15.  
  16. terapkan tema tersebut menggunakan colorscheme one
  17. Instalasi Tree Explorer
  18. call plug#begin('~/.vim/plugged')
  19. Plug 'rakr/vim-one'
  20. Plug 'preservim/nerdtree'
  21. call plug#end()
  22. set number
  23. syntax enable
  24. colorscheme one
  25. command! Reload :so ~/.vimrc
  26. pasang plugin Xuyuanp/nerdtree-git-plugin
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement