.bashrc add git change num files, install-new-server add ripgrep

This commit is contained in:
arnaucube
2020-01-28 22:55:15 +01:00
parent 73446f4a52
commit 01431338f0
2 changed files with 14 additions and 3 deletions

View File

@@ -16,6 +16,7 @@ cp ./.vimrc ~/.vimrc
# neovim
echo "installing neovim"
# alternative: apt-get install python3-neovim
apt-get -y install neovim
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
@@ -56,6 +57,9 @@ echo "installing fzf fuzzy finder"
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install
echo "instaling ripgrep"
curl -LO https://github.com/BurntSushi/ripgrep/releases/download/11.0.2/ripgrep_11.0.2_amd64.deb
dpkg -i ripgrep_11.0.2_amd64.deb
# nginx
apt install nginx -y