2024-09-08 23:35:50 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
sudo apt-get install ripgrep
|
|
|
|
|
2024-09-09 00:22:42 +08:00
|
|
|
# setup font
|
2024-09-08 23:35:50 +08:00
|
|
|
mkdir -p ~/.local/share/fonts
|
|
|
|
cp .font/{*.ttf,*.otf} ~/.local/share/fonts
|
|
|
|
sudo cp *.ttf /usr/share/fonts/truetype/
|
|
|
|
sudo fc-cache -f -v
|
2024-09-09 00:22:42 +08:00
|
|
|
|
|
|
|
# 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'
|