this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Install Python neovim libs

+20 -1
+1
.gitignore
··· 3 3 !/bin/cargo-cov 4 4 !/bin/cargon 5 5 !/bin/git-cleanup 6 + !/bin/Makefile 6 7 7 8 /nvim/spell 8 9 /nvim/.netrwhist
+15
bin/Makefile
··· 1 + install: lein git-imerge pip 2 + $(LN) . ${HOME}/.local/bin 3 + 4 + lein: 5 + $(WGET) -O./lein https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein 6 + chmod +x ./lein 7 + 8 + git-imerge: 9 + $(WGET) -O./git-imerge https://raw.githubusercontent.com/mhagger/git-imerge/master/git-imerge 10 + chmod +x ./git-imerge 11 + 12 + pip: 13 + pip install --user --upgrade httpie patool 14 + 15 + .PHONY: lein git-imerge
+4 -1
nvim/Makefile
··· 1 1 XDG_CONFIG_HOME ?= ${HOME}/.config 2 2 3 - install: 3 + install: python 4 4 $(LN) . $(XDG_CONFIG_HOME)/nvim 5 5 # nvim +PlugUpdate +qall # Currently doesn't work 6 6 @echo 'Run NeoVim and execute `:PlugInstall`' 7 7 8 8 clean: 9 9 rm $(XDG_CONFIG_HOME)/nvim 10 + 11 + python: 12 + pip install --user --upgrade neovim 10 13 11 14 .PHONY: install clean