diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-01-27 16:02:37 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-01-27 16:02:37 -0500 |
commit | 616881193f56dbc6943a63c0201874b60c075188 (patch) | |
tree | 188940529880834f26f6809e41dd08a222bcf3c7 | |
parent | 8122a96f65e767d86d483a465367dd5ccba1d5a7 (diff) |
move nanorc into .config
-rw-r--r-- | .config/nanorc (renamed from .nanorc.in) | 0 | ||||
l--------- | .nanorc | 1 | ||||
-rw-r--r-- | Makefile | 2 |
3 files changed, 2 insertions, 1 deletions
diff --git a/.nanorc.in b/.config/nanorc index b21e86b..b21e86b 100644 --- a/.nanorc.in +++ b/.config/nanorc @@ -0,0 +1 @@ +.config/nanorc
\ No newline at end of file @@ -9,7 +9,7 @@ all: $(targets) clean: rm -f $(targets) -.nanorc: .nanorc.in $(NANO_SHARE) +.config/nanorc: .config/nanorc.in $(NANO_SHARE) cat '$<' > '$@' for file in $(NANO_SHARE)/*.nanorc; do echo "include \"$$file\""; done >> '$@' |