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