From 2985339c63ceb2dbeba9916e76c94d58a313e135 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sat, 2 Mar 2024 12:04:10 +0100 Subject: [PATCH] chore: add neovim and deno to setup --- setup/init.sh | 8 ++++++++ setup/{vim.sh => neovim.sh} | 0 2 files changed, 8 insertions(+) rename setup/{vim.sh => neovim.sh} (100%) diff --git a/setup/init.sh b/setup/init.sh index 8822b15..c13585d 100755 --- a/setup/init.sh +++ b/setup/init.sh @@ -31,6 +31,10 @@ brew install --cask secretive echo "Installing Homebrew packages, Cask binaries and Mac App Store software" source ./brew.sh +# Neovim +echo "Installing Neovim" +source ./neovim.sh + # Direnv echo "Installing Direnv" source ./direnv.sh @@ -39,6 +43,10 @@ source ./direnv.sh echo "Installing Node.js" source ./nodejs.sh +# Deno +echo "Installing Deno" +source ./deno.sh + # Python echo "Installing Python" source ./python.sh diff --git a/setup/vim.sh b/setup/neovim.sh similarity index 100% rename from setup/vim.sh rename to setup/neovim.sh