Files
dotfiles/setup_ubuntu_shared.zsh
2024-08-01 11:36:20 +02:00

27 lines
662 B
Bash
Executable File

#! /usr/bin/zsh
#
# 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
sudo apt -y install curl neovim zsh tmux virtualenvwrapper powerline fonts-powerline python3 python3-pip python3-pynvim
./clone_and_link.sh shared; true
if [ $SHELL != "/bin/zsh" ]; then
chsh -s /usr/bin/zsh;
fi
for filename in zsh/.*_debian.example(N); do
cp $filename ${filename:0:-15}
done
for filename in tmux/.*_debian.example(N); do
cp $filename ${filename:0:-15}
done
for filename in nvim/.*_debian.example(N); do
cp $filename ${filename:0:-15}
done