my shell and tool configurations

add nvim

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