Index

dotfiles / 6ac0968

My personal dotfiles for Debian/Ubuntu.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
802 Feb 2020 15:546ac0968Add passwdgen.py utilityJosh Stockin140G

Blob @ dotfiles / copy

text/x-shellscript540 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# GTK config
10echo "GTK config"
11cp gtk.css ~/.config/gtk-3.0/gtk.css
12
13# Git config
14echo "Git config"
15cp .gitconfig ~/.gitconfig
16
17# Vim config
18echo "Vim config"
19mkdir -p ~/.vim
20cp vimrc ~/.vim/vimrc
21
22echo "Installing Vim Plug"
23curl -fLso ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
24
25# Generic utils
26echo "Generic utils"
27cp -r utils/ ~
28
29# Done
30echo "Done"
31