64 lines
2.6 KiB
Bash
64 lines
2.6 KiB
Bash
sudo apt install zig -y
|
|
# snap install nvim --classic
|
|
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
|
|
|
|
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 apt install tmux -y
|
|
|
|
###### Kitty
|
|
curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin
|
|
# Create symbolic links to add kitty and kitten to PATH (assuming ~/.local/bin is in
|
|
# your system-wide PATH)
|
|
ln -sf ~/.local/kitty.app/bin/kitty ~/.local/kitty.app/bin/kitten ~/.local/bin/
|
|
# Place the kitty.desktop file somewhere it can be found by the OS
|
|
cp ~/.local/kitty.app/share/applications/kitty.desktop ~/.local/share/applications/
|
|
# If you want to open text files and images in kitty via your file manager also add the kitty-open.desktop file
|
|
cp ~/.local/kitty.app/share/applications/kitty-open.desktop ~/.local/share/applications/
|
|
# Update the paths to the kitty and its icon in the kitty.desktop file(s)
|
|
sed -i "s|Icon=kitty|Icon=/home/$USER/.local/kitty.app/share/icons/hicolor/256x256/apps/kitty.png|g" ~/.local/share/applications/kitty*.desktop
|
|
sed -i "s|Exec=kitty|Exec=/home/$USER/.local/kitty.app/bin/kitty|g" ~/.local/share/applications/kitty*.desktop
|
|
######
|
|
|
|
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
|
|
######
|
|
|
|
sudo npm install -g @railway/cli
|
|
sudo npm install -g vercel
|
|
sudo 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
|
|
|
|
rm -r lazygit
|
|
git clone https://github.com/noisycarlos/lazygit
|