2024-05-21 09:24:01 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-05-21 10:19:40 +00:00
|
|
|
sudo apt update && sudo apt upgrade -y
|
2024-05-21 10:22:02 +00:00
|
|
|
sudo apt install -y neovim ripgrep build-essential git cmake fzf stow zsh
|
2024-05-21 10:19:40 +00:00
|
|
|
sudo update-alternatives --set editor /usr/bin/nvim
|
|
|
|
sudo update-alternatives --set vim /usr/bin/nvim
|
2024-05-21 10:30:13 +00:00
|
|
|
|
|
|
|
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
|
|
|
|
~/.local/share/nvim/site/pack/packer/start/packer.nvim
|
|
|
|
|