blob: b6b596c8025e2ab9ea5fb3c5c2e199fc58cce1c8 (
plain) (
tree)
|
|
XDG_CONFIG=$(HOME)/.config/
LN = @ln -sf
.PHONY: emacs
emacs:
$(LN) $(PWD)/emacs $(XDG_CONFIG)
$(LN) $(PWD)/aspell.en.pws $(HOME)/.aspell.en.pws
.PHONY: setup
setup:
@git config --local user.email "franck@fcuny.net"
@git config --local user.name "Franck Cuny"
all: setup emacs
|