My personal dotfiles for Debian/Ubuntu.
{#} | Time | Hash | Subject | Author | # | (+) | (-) | GPG? |
---|---|---|---|---|---|---|---|---|
5 | 05 Jan 2020 12:25 | 521baec | Add .profile bash configuration | Josh Stockin | 1 | 1 | 0 | N |
1 | #!/bin/bash |
2 | |
3 | # Bash config |
4 | echo "Bash config" |
5 | cp .bash_aliases ~/.bash_aliases |
6 | cp .bashrc ~/.bashrc |
7 | cp .profile ~/.profile |
8 | |
9 | # Git config |
10 | echo "Git config" |
11 | cp .gitconfig ~/.gitconfig |
12 | |
13 | # Vim config |
14 | echo "Vim config" |
15 | mkdir -p ~/.vim |
16 | cp vimrc ~/.vim/vimrc |
17 | |
18 | echo "Installing Vim Plug" |
19 | curl -fLso ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |
20 | |
21 | # Done |
22 | echo "Done" |
23 |