my shell and tool configurations

add nvim

+13 -2
+7 -2
Makefile
··· 16 16 install: 17 17 @make $(UNAME) 18 18 19 - Linux: bash fish git mutt byobu weechat vim gnupg 19 + Linux: bash fish git mutt byobu weechat vim nvim gnupg 20 20 Windows: bash git vim 21 21 Other: bash git vim 22 22 ··· 26 26 stow -t "$$HOME" -D fish 27 27 stow -t "$$HOME" -D git 28 28 stow -t "$$HOME" -D vim 29 + stow -t "$$HOME" -D nvim 29 30 stow -t "$$HOME" -D mutt 30 31 stow -t "$$HOME" -D byobu 31 32 stow -t "$$HOME" -D weechat ··· 50 51 git submodule update --init 51 52 ~/.spf13-vim/bootstrap.sh 52 53 54 + nvim: 55 + @printf "$(YELLOW)--- nvim -----------------------------------------------\n$(RESET)" 56 + stow -t "$$HOME" nvim 57 + 53 58 mutt: 54 59 @printf "$(YELLOW)--- mutt -----------------------------------------------\n$(RESET)" 55 60 stow -t "$$HOME" mutt ··· 68 73 chmod 700 "$$HOME/.gnupg" 69 74 stow -t "$$HOME" gnupg 70 75 71 - .PHONY: bash fish git vim mutt byobu weechat gnupg clean install Windows Linux Other 76 + .PHONY: bash fish git vim nvim mutt byobu weechat gnupg clean install Windows Linux Other 72 77
+2
fish/.config/fish/config.fish
··· 15 15 set -x SSH_AGENT_PID "" 16 16 set -x SSH_AUTH_SOCK (gpgconf --list-dirs agent-ssh-socket) 17 17 18 + set -x BBJ_USER $USER 19 +
+4
nvim/.config/nvim/init.vim
··· 1 + set runtimepath^=~/.vim runtimepath+=~/.vim/after 2 + let &packpath = &runtimepath 3 + source ~/.vimrc 4 +