Index

dotfiles / 2cb5c41

My personal dotfiles for Debian/Ubuntu.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
621 Jan 2020 18:222cb5c41Use a new GTK and Vim theme, Ctrl+N hook on vimJosh Stockin140N

Blob @ dotfiles / copy

text/x-shellscript487 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# Done
26echo "Done"
27