mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-15 06:28:40 +01:00
14 lines
346 B
Plaintext
14 lines
346 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
# Do not use this script unless you know what you are doing!
|
||
|
cat bashrc > ~/.bashrc
|
||
|
cat tmux.conf > ~/.tmux.conf
|
||
|
cat zshrc > ~/.zshrc
|
||
|
cat gitconfig > ~/.gitconfig
|
||
|
cat vimrc > ~/.vimrc
|
||
|
mkdir -p ~/.gnupg
|
||
|
cat gpg.conf > ~/.gnupg/gpg.conf
|
||
|
cat xsessionrc > ~/.xsessionrc
|
||
|
cat pastebinit.xml > ~/.pastebinit.xml
|
||
|
|
||
|
# vim : set ft=sh :
|