Add ubuntu setup

This commit is contained in:
Fabian
2022-10-26 13:09:21 +00:00
parent ec0340a4b9
commit 6c3e520d20
17 changed files with 37 additions and 1082 deletions

27
setup_ubuntu.sh Executable file
View File

@@ -0,0 +1,27 @@
#! /bin/bash
#
# 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 neovim zsh tmux virtualenvwrapper powerline fonts-powerline python3 python3-pip
pip3 install neovim
./clone_and_link.sh; true
if [ $SHELL != "/bin/zsh" ]; then
chsh -s /usr/bin/zsh;
fi
for filename in zsh/.*_debian.example; do
cp $filename ${filename:0:-15}
done
for filename in tmux/.*_debian.example; do
cp $filename ${filename:0:-15}
done
for filename in nvim/.*_debian.example; do
cp $filename ${filename:0:-15}
done