moves into dirs

This commit is contained in:
2024-04-23 14:17:06 -07:00
parent 0dbdafcaf0
commit 5862a3a955
23 changed files with 7 additions and 6 deletions

62
ubuntu/install-dev.sh Normal file
View File

@@ -0,0 +1,62 @@
sudo apt install zig -y
snap install nvim --classic
sudo cp ./sesh /usr/bin
cp .tmux.conf ~
###### Node
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
nvm install node
nvm install-latest-npm
########
sudo apt install golang-go -y
sudo apt install ripgrep -y
sudo apt install ruby -y
sudo apt install ruby-dev -y
sudo add-apt-repository ppa:lazygit-team/release -y
sudo apt update
LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep -Po '"tag_name": "v\K[^"]*')
curl -Lo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz"
tar xf lazygit.tar.gz lazygit
sudo install lazygit /usr/local/bin
sudo apt install alacritty -y
sudo flatpak install org.wezfurlong.wezterm -y
sudo apt install tmux -y
sudo apt install software-properties-common
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EB3E94ADBE1229CF
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
sudo apt update
sudo apt install code -y
# sudo gem install solargraph
##### nerd fonts
sudo apt install wget fontconfig &&
wget -P ~/.local/share/fonts https://github.com/ryanoasis/nerd-fonts/releases/latest/download/Meslo.zip &&
cd ~/.local/share/fonts && unzip Meslo.zip && rm *Windows* && rm Meslo.zip && fc-cache -fv
######
npm install -g @railway/cli
npm install -g vercel
npm install -g vercel@latest
cd ~/.config/
git clone http://www.github.com/noisycarlos/kitty
git config --global user.email "noisycarlos@hey.com"
git config --global user.name "Carlos Aldana"
git clone https://github.com/noisycarlos/kitty
git clone https://github.com/noisycarlos/nvim
git clone https://github.com/noisycarlos/wezterm
rm -r lazygit
git clone https://github.com/noisycarlos/lazygit
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm

34
ubuntu/main.sh Normal file
View File

@@ -0,0 +1,34 @@
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FEF9748469ADBE15DA7CA80AC2D62742012EA22
# sudo sh -c 'echo "deb [arch=amd64] https://downloads.1password.com/linux/debian/amd64/ stable main" > /etc/apt/sources.list.d/1password.list'
# sudo apt update
# sudo apt install 1password -y
sudo apt install btop -y
sudo apt install curl -y
sudo apt-get install fuse libfuse2 -y
# sudo apt install flatseal -y
# sudo apt install gnome-software-plugin-flatpak -y
# sudo apt install gnome-shell-extension-pop-shell x11-utils -y
# Codecs
sudo apt install ubuntu-restricted-extras -y
# Browsers
# flatpak install flathub com.google.Chrome -y
# flatpak install flathub org.waterfoxproject.waterfox -y
# sudo apt install chromium-browser -y
# wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
# sudo dpkg -i google-chrome-stable_current_amd64.deb
# sudo apt install -f -y
# rm google-chrome-stable_current_amd64.deb
# Video
sudo apt install djv -y
sudo apt install vlc -y
sudo apt install python3-vlc -y
# sudo reboot now
sudo apt install flatpak -y
flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo

45
ubuntu/ubuntu-dev-old.sh Normal file
View File

@@ -0,0 +1,45 @@
sudo apt install zig -y
sudo apt install neovim -y
sudo apt install npm -y
sudo apt install golang-go -y
sudo apt install ripgrep -y
sudo apt install ruby -y
sudo apt install ruby-dev -y
sudo add-apt-repository ppa:lazygit-team/release -y
sudo apt update
sudo apt install lazygit -y
sudo apt install alacritty -y
sudo apt install tmux -y
sudo apt install kitty -y
sudo apt install software-properties-common
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EB3E94ADBE1229CF
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
sudo apt update
sudo apt install code -y
# sudo gem install solargraph
sudo add-apt-repository ppa:hack-fonts/hack -y
sudo apt update
sudo apt install fonts-hack -y
git clone http://www.github.com/noisycarlos/kitty
sudo npm install -g @railway/cli
sudo npm install -g vercel
sudo npm install -g vercel@latest
cd ~/.config/
git config --global user.email "noisycarlos@hey.com"
git config --global user.name "Carlos Aldana"
git clone https://github.com/noisycarlos/kitty
git clone https://github.com/noisycarlos/nvim
rm -r lazygit
git clone https://github.com/noisycarlos/lazygit

Binary file not shown.