summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2017-01-16 08:35:17 -0500
committerJesse Luehrs <doy@tozt.net>2017-01-21 06:37:31 -0500
commitdfff720c4cb546c533aeb02996f2139209328052 (patch)
treeb72bd9db6b184d34a3aa4929d712eef8484045f4 /Makefile
parentfb35f3abe1ab38222e26f6996f35d4e1dfdd3e7f (diff)
downloadconf-dfff720c4cb546c533aeb02996f2139209328052.tar.gz
conf-dfff720c4cb546c533aeb02996f2139209328052.zip
basic fish configuration
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 474b777..f707b7e 100644
--- a/Makefile
+++ b/Makefile
@@ -80,7 +80,7 @@ RM = @rm -f
build : $(BUILD)
-install : build $(INSTALLED) /var/spool/cron/$(USER) $(INTO)/Maildir/.notmuch
+install : build $(INSTALLED) /var/spool/cron/$(USER) $(INTO)/Maildir/.notmuch $(INTO)/.config/fish
@for dir in $(EMPTYDIRS); do mkdir -p $(INTO)/$$dir; done
@chmod 600 msmtprc
@chmod 700 gnupg
@@ -114,6 +114,11 @@ $(INTO)/Maildir/.notmuch: notmuch
@[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak
$(LN) $(PWD)/$< $@
+$(INTO)/.config/fish: fish
+ mkdir -p $(INTO)/.config
+ @[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak
+ $(LN) $(PWD)/$< $@
+
%.spl : %
@vim -u NONE -c':mkspell! $< | :q'