Files
dotfiles/setup_ubuntu.sh

29 lines
657 B
Bash
Raw Normal View History

2022-10-26 13:09:21 +00:00
#! /bin/bash
#
# clone_and_link.sh
# Copyright (C) 2016 fabian <fabian@fabi-laptop-arch>
#
# Distributed under terms of the MIT license.
#
2024-07-19 09:11:53 +02:00
shopt -s nullglob
2022-10-26 13:09:21 +00:00
sudo apt -y update
sudo apt -y dist-upgrade
2024-07-01 13:29:55 +00:00
sudo apt -y install neovim zsh tmux virtualenvwrapper powerline fonts-powerline python3 python3-pip python3-pynvim
2022-10-26 13:09:21 +00:00
./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