···17171818theme base16-ocean dark
19192020-set fish_greeting (fortune zen)
2020+# set fish_greeting (fortune zen)
21212222enable direnv hook fish
2323enable hub alias -s
+3-7
fish/functions/work.fish
···11function work
22 set NAME $argv[1]
3344- mkdir -p (dirname "/tmp/work/$NAME")
55- set -x NVIM_LISTEN_ADDRESS "/tmp/work/$NAME"
66-77- if not tmux has-session -t "$NAME" ^/dev/null
88- tmux start-server \;\
99- new-session -d -s "$NAME" -c "$WORKSPACE_SRC/$NAME"
44+ tmux new-session -A -s "$NAME" -c "$WORKSPACE_SRC/$NAME" ^/dev/null
55+ if [ ! -z "$TMUX" ]
66+ tmux switch-client -t "$NAME"
107 end
1111- tmux attach -t "$NAME"
128end
+2
git/config
···1414 root = !git checkout master && git up
1515 squash = rebase -i @{u}
1616 st = status -sb
1717+ todo = grep -Ee '\\bTODO:?\\b'
1818+ fixme = grep -Ee '\\bFIX(ME)?:?\\b'
17191820[mergetool]
1921 keepBackup = false
···11+syntax match rustDocCommentHeader "#\+\s.*" contained containedin=rustCommentLineDoc
22+syntax match rustDocCommentLink "\[[^]]\+\]" contained containedin=rustCommentLineDoc
33+syntax match rustDocCommentURL "https\?://\S\+" contained containedin=rustCommentLineDoc
44+hi link rustDocCommentHeader Define
55+hi link rustDocCommentLink Include
66+hi link rustDocCommentURL Underline