more dotfiles!

This commit is contained in:
randomuser 2022-02-06 04:58:21 +00:00
parent a9b3355daa
commit 5f6fc1da03
5 changed files with 37 additions and 1 deletions

View File

@ -1,5 +1,5 @@
LOCATION="$(HOME)/.config" LOCATION="$(HOME)/.config"
install: install_bspwm install_nvim install_sx install_sxhkd install_vimb install_zathura install_wyebadblock install_simplestatus environment install: install_bspwm install_nvim install_sx install_sxhkd install_vimb install_zathura install_wyebadblock install_simplestatus install_bash install_ssh install_git environment
install_bspwm: install_bspwm:
cp -r bspwm $(LOCATION) cp -r bspwm $(LOCATION)
install_nvim: install_nvim:
@ -16,5 +16,11 @@ install_wyebadblock:
cp -r wyebadblock $(LOCATION) cp -r wyebadblock $(LOCATION)
install_simplestatus: install_simplestatus:
cp -r simplestatus $(LOCATION) cp -r simplestatus $(LOCATION)
install_bash:
cp -r bash $(LOCATION)
install_ssh:
cp -r ssh $(LOCATION)
install_git:
cp -r git $(LOCATION)
environment: environment:
sh environ sh environ

8
bash/bashrc Normal file
View File

@ -0,0 +1,8 @@
#!/bin/bash
# some housekeeping
set -o vi
shopt -s autocd
# ssh keeping tidy
alias ssh="ssh -F $HOME/.config/ssh/config"

13
bash/profile Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# program exports to keep the $HOME neat and tidy
# bash
export HISTFILE="$HOME/.config/bash/hist"
export HISTFILESIZE=3000
# less
export LESSHISTFILE="-"
# source the bashrc(s)
[ -f $HOME/.config/bash/bashrc ] && . $HOME/.config/bash/bashrc
[ -f $HOME/.bashrc ] && . $HOME/.bashrc

3
git/config Normal file
View File

@ -0,0 +1,3 @@
[user]
email = randomuser@tilde.club
name = randomuser

6
ssh/config Normal file
View File

@ -0,0 +1,6 @@
IdentityFile ~/.local/share/ssh/id_rsa
IdentityFile ~/.local/share/ssh/id_dsa
IdentityFile ~/.local/share/ssh/id_ecdsa
IdentityFile ~/.local/share/ssh/id_ed25519
UserKnownHostsFile ~/.local/share/ssh/known_hosts.d/%k