[ADD] Tin configuration file

The Makefile has to be modified to handle tin in a particular fashion,
because Tin removes and then rewrite its whole configuration file after
closing, instead of only modifying the file.

A symbolic link to its whole configuration folder is therefore the only
manageable way to keep the configuration linked.
This commit is contained in:
Bruno BELANYI 2020-02-04 14:43:49 +01:00
parent 8c92db3cd7
commit 78d6792332
3 changed files with 818 additions and 0 deletions

View file

@ -8,6 +8,7 @@ CLI_PACKAGES := \
ranger \
scripts \
shell \
tin \
vim \
zsh \
@ -125,6 +126,9 @@ stow-scripts: scripts
mkdir -p $(STOW_TARGET)
$(STOW) $<
stow-tin: tin
ln -s $(realpath tin/.tin) $(STOW_TARGET)/.tin
stow-vim: vim
$(STOW) $<
vim +PlugInstall
@ -143,6 +147,9 @@ unstow-scripts: STOW_TARGET=~/.scripts
unstow-scripts:
$(STOW) -D scripts
unstow-tin:
rm -f $(STOW_TARGET)/.tin
# Development related installations
.PHONY: rust
rust: