Index

dotfiles / 521baec

My personal dotfiles for Debian/Ubuntu.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
505 Jan 2020 12:25521baecAdd .profile bash configurationJosh Stockin110N

Blob @ dotfiles / copy

text/x-shellscript418 bytesdownload raw
1#!/bin/bash
2
3# Bash config
4echo "Bash config"
5cp .bash_aliases ~/.bash_aliases
6cp .bashrc ~/.bashrc
7cp .profile ~/.profile
8
9# Git config
10echo "Git config"
11cp .gitconfig ~/.gitconfig
12
13# Vim config
14echo "Vim config"
15mkdir -p ~/.vim
16cp vimrc ~/.vim/vimrc
17
18echo "Installing Vim Plug"
19curl -fLso ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
20
21# Done
22echo "Done"
23