From 9bea5fb64b36c0ca605dd11e277d04222242cac6 Mon Sep 17 00:00:00 2001 From: Dominik Madarasz Date: Tue, 21 May 2024 10:19:40 +0000 Subject: [PATCH] improve install --- prep | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/prep b/prep index 239e21f..5d3feaf 100755 --- a/prep +++ b/prep @@ -1,5 +1,6 @@ #!/bin/bash -sudo apt install neovim ripgrep build-essential git cmake fzf stow -sudo update-alternatives --config editor -sudo update-alternatives --config vim +sudo apt update && sudo apt upgrade -y +sudo apt install -y neovim ripgrep build-essential git cmake fzf stow +sudo update-alternatives --set editor /usr/bin/nvim +sudo update-alternatives --set vim /usr/bin/nvim