From 941cc455ce304994e9188a6ef5617658fa8d8d8c Mon Sep 17 00:00:00 2001 From: "chawley (derry)" Date: Wed, 28 Aug 2019 15:47:34 -0400 Subject: [PATCH] Removed Makefile (migrated to Ansible) and update README.md --- Makefile | 20 -------------------- README.md | 13 ------------- 2 files changed, 33 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index feea91c..0000000 --- a/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -vimrepo: softlinks - @echo "-----------------------------------------------------------" - @echo "Vim and fzf environment" - @echo "-----------------------------------------------------------" - @echo "Open vim and type :PlugInstall to install extension manager" - -softlinks: apps - @test -L ${HOME}/.vim && unlink ${HOME}/.vim || true - @(test -d ${HOME}/.vim && mv ${HOME}/.vim ${HOME}/.vim_old) || true - @ln -vsf ${PWD}/.vim ${HOME}/.vim - @(test -L ${HOME}/.vimrc && unlink ${HOME}/.vimrc) || true - @(test -f ${HOME}/.vimrc && mv ${HOME}/.vimrc ${HOME}/.vimrc_old) || true - @ln -vsf ${PWD}/.vimrc ${HOME}/.vimrc - -apps: - @sudo apt install vim || sudo yum install vim - @test -d ${HOME}/.fzf && git --git-dir=${HOME}/.fzf/.git --work-tree=${HOME}/.fzf pull && ${HOME}/.fzf/install --all \ - || (git clone --depth 1 https://github.com/junegunn/fzf.git ${HOME}/.fzf && ${HOME}/.fzf/install --all) - - diff --git a/README.md b/README.md index e36f6c0..a72a93a 100644 --- a/README.md +++ b/README.md @@ -12,16 +12,3 @@ slate clean and start over. Whenever possible, I've noted the URL from which I found the setting or snippet. I try to insist that not everything is self-explanatory. ---- - -Included an automated install of [command line fuzzy finder](https://github.com/junegunn/fzf) since I started using -it and it has a vim plugin. (It's recommended on it's own as well - check it out if you're looking for a fuzzy search -tool for use at the command line) - ---- - -The included Makefile will ensure vim is installed and the dotfiles get linked to your home directory. - - make vimrepo - -should do it.