mirror of https://github.com/LazyVim/starter
14 lines
385 B
Bash
14 lines
385 B
Bash
#!/bin/bash
|
|
|
|
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'
|