Files
dotfiles/setup_ubuntu_shared.zsh

28 lines
736 B
Bash
Raw Normal View History

2024-07-01 13:39:53 +00:00
#! /usr/bin/zsh
2024-01-10 16:29:27 +01:00
#
# clone_and_link.sh
# Copyright (C) 2016 fabian <fabian@fabi-laptop-arch>
#
# Distributed under terms of the MIT license.
#
sudo apt -y update
sudo apt -y dist-upgrade
2025-05-09 13:56:27 +02:00
sudo apt -y install curl zsh tmux virtualenvwrapper powerline fonts-powerline python3 python3-pip python3-pynvim
sudo snap install --classic nvim
2024-01-10 16:29:27 +01:00
./clone_and_link.sh shared; true
if [ $SHELL != "/bin/zsh" ]; then
chsh -s /usr/bin/zsh;
fi
2024-07-01 13:39:53 +00:00
for filename in zsh/.*_debian.example(N); do
ln -Tsfv $PWD/$filename $PWD/${filename:0:-15}
2024-01-10 16:29:27 +01:00
done
2024-07-01 13:39:53 +00:00
for filename in tmux/.*_debian.example(N); do
ln -Tsfv $PWD/$filename $PWD/${filename:0:-15}
2024-01-10 16:29:27 +01:00
done
2024-07-01 13:39:53 +00:00
for filename in nvim/.*_debian.example(N); do
ln -Tsfv $PWD/$filename $PWD/${filename:0:-15}
2024-01-10 16:29:27 +01:00
done