mirror of https://github.com/LazyVim/starter
Add vim-plug + vim-fugitive
parent
466945ef52
commit
830038c694
|
@ -0,0 +1,5 @@
|
|||
call plug#begin('~/.vim/plugged')
|
||||
Plug 'tpope/vim-fugitive'
|
||||
call plug#end()
|
||||
|
||||
lua require('config')
|
5
setup.sh
5
setup.sh
|
@ -2,7 +2,12 @@
|
|||
|
||||
sudo apt-get install ripgrep
|
||||
|
||||
# setup font
|
||||
mkdir -p ~/.local/share/fonts
|
||||
cp .font/{*.ttf,*.otf} ~/.local/share/fonts
|
||||
sudo cp *.ttf /usr/share/fonts/truetype/
|
||||
sudo fc-cache -f -v
|
||||
|
||||
# setup vim-plug
|
||||
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
||||
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
||||
|
|
Loading…
Reference in New Issue