From 8c1f96fc48ec95dad87071ffce12a235a8a12305 Mon Sep 17 00:00:00 2001 From: JoannaaKL Date: Mon, 29 Sep 2025 15:38:06 +0200 Subject: [PATCH] Install neovim for both cases --- helpers.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helpers.sh b/helpers.sh index de8d00d..123abd4 100644 --- a/helpers.sh +++ b/helpers.sh @@ -45,6 +45,7 @@ codespaces_setup(){ install_if_missing tmux bash -c 'sudo apt-get update -y && sudo apt-get install -y tmux' install_if_missing bat sudo apt-get install -y bat install_if_missing rg sudo apt-get install -y ripgrep + install_if_missing nvim sudo apt-get install -y neovim codespaces_install_shellcheck log_helpers "*** Codespaces setup done ***" } @@ -54,6 +55,7 @@ local_setup(){ install_if_missing tmux brew install tmux install_if_missing bat brew install bat install_if_missing rg brew install ripgrep + install_if_missing rg brew install neovim local_install_shellcheck log_helpers "*** Local setup done ***" }