Added scripts for ubuntu desktop setup

This commit is contained in:
Exide 2025-04-12 19:42:29 +03:00
parent 05a0f5bb26
commit 1dbd65c40e
4 changed files with 18 additions and 1 deletions

View File

@ -1 +0,0 @@
irm https://git.exideprod.com/Exide/scripts/raw/branch/master/start.ps1 | iex

17
ubuntu-desktop/configure.sh Executable file
View File

@ -0,0 +1,17 @@
sudo apt install git
mkdir ~/tmp/setup
cd ~/tmp/setup
# configuring nvim
wget -O nvim.tar.gz https://github.com/neovim/neovim/releases/download/v0.10.4/nvim-linux-x86_64.tar.gz
tar xzf nvim.tar.gz
sudo chown root:root -R nvim
sudo mv ./nvim-linux-x86_64 /opt/nvim
sudo ln -s /opt/nvim/bin/nvim /usr/local/bin/nvim
sudo apt install git
git clone https://git.exideprod.com/Exide/LazyVim-custom.git ~/.config/nvim
rm -rf ~/tmp/setup

1
windows/start-remote.ps1 Normal file
View File

@ -0,0 +1 @@
irm https://git.exideprod.com/Exide/scripts/raw/branch/master/windows/start.ps1 | iex