From 76dad1fb8a9f31dd1a71f6ae7d99141ef75e282c Mon Sep 17 00:00:00 2001 From: Evan Date: Sat, 18 Jul 2026 16:40:43 -0500 Subject: [PATCH] install neovim --- main.sh | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/main.sh b/main.sh index e61e5ba..ec5001e 100644 --- a/main.sh +++ b/main.sh @@ -53,9 +53,18 @@ mkdir -p "$HOME/.config" cp ./utils/starship.toml "$HOME/.config/starship.toml" # Neovim -echo "* install neovim & clone config" | tee todo.md -a +curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz +sudo rm -rf /opt/nvim-linux-x86_64 +sudo tar -C /opt -xzf nvim-linux-x86_64.tar.gz -# Other editor(s) (TBD) +echo 'export PATH="$PATH:/opt/nvim-linux-x86_64/bin"' | tee "$HOME/.bashrc" -a + +git clone https://gitea.jovan04.com/evan/neovim-config "$HOME/.config/nvim" +rm nvim-linux-x86_64.tar.gz + +echo "* install pyright language server (and any other relevant ones)" | tee todo.md -a + +# Other editor(s) (TBD) echo "* investigate and install other IDE(s)" | tee todo.md -a # Brave browser