tangled
alpha
login
or
join now
benharri.org
/
dotfiles
0
fork
atom
my shell and tool configurations
0
fork
atom
overview
issues
pulls
pipelines
add nvim
benharri.org
7 years ago
a3bf5c96
059a4024
+13
-2
3 changed files
expand all
collapse all
unified
split
Makefile
fish
.config
fish
config.fish
nvim
.config
nvim
init.vim
+7
-2
Makefile
···
16
16
install:
17
17
@make $(UNAME)
18
18
19
19
-
Linux: bash fish git mutt byobu weechat vim gnupg
19
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
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
54
+
nvim:
55
55
+
@printf "$(YELLOW)--- nvim -----------------------------------------------\n$(RESET)"
56
56
+
stow -t "$$HOME" nvim
57
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
71
-
.PHONY: bash fish git vim mutt byobu weechat gnupg clean install Windows Linux Other
76
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
18
+
set -x BBJ_USER $USER
19
19
+
+4
nvim/.config/nvim/init.vim
···
1
1
+
set runtimepath^=~/.vim runtimepath+=~/.vim/after
2
2
+
let &packpath = &runtimepath
3
3
+
source ~/.vimrc
4
4
+