more dotfiles!
This commit is contained in:
parent
a9b3355daa
commit
5f6fc1da03
8
Makefile
8
Makefile
|
@ -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
|
||||||
|
|
|
@ -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"
|
|
@ -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
|
|
@ -0,0 +1,3 @@
|
||||||
|
[user]
|
||||||
|
email = randomuser@tilde.club
|
||||||
|
name = randomuser
|
|
@ -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
|
Loading…
Reference in New Issue