this repo has no description
1
fork

Configure Feed

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

Make git config diretory independent

+2 -12
+2
git/Makefile
··· 1 1 install: 2 2 git config --global include.path "$(PWD)/git/config" 3 + git config --global core.excludesfile "$(PWD)/git/ignore" 3 4 4 5 clean: 5 6 git config --global --unset include.path 7 + git config --global --unset core.excludesfile 6 8 7 9 .PHONY: install clean
-12
utils/ctags
··· 8 8 --fields=+iaS 9 9 --extra=+q 10 10 11 - --langdef=Rust 12 - --langmap=Rust:.rs 13 - --regex-Rust=/^[ \t]*(#\[[^\]]\][ \t]*)*(pub[ \t]+)?(extern[ \t]+)?("[^"]+"[ \t]+)?(unsafe[ \t]+)?fn[ \t]+([a-zA-Z0-9_]+)/\6/f,functions,function definitions/ 14 - --regex-Rust=/^[ \t]*(pub[ \t]+)?type[ \t]+([a-zA-Z0-9_]+)/\2/T,types,type definitions/ 15 - --regex-Rust=/^[ \t]*(pub[ \t]+)?enum[ \t]+([a-zA-Z0-9_]+)/\2/g,enum,enumeration names/ 16 - --regex-Rust=/^[ \t]*(pub[ \t]+)?struct[ \t]+([a-zA-Z0-9_]+)/\2/s,structure names/ 17 - --regex-Rust=/^[ \t]*(pub[ \t]+)?mod[ \t]+([a-zA-Z0-9_]+)/\2/m,modules,module names/ 18 - --regex-Rust=/^[ \t]*(pub[ \t]+)?(static|const)[ \t]+(mut[ \t]+)?([a-zA-Z0-9_]+)/\4/c,consts,static constants/ 19 - --regex-Rust=/^[ \t]*(pub[ \t]+)?(unsafe[ \t]+)?trait[ \t]+([a-zA-Z0-9_]+)/\3/t,traits,traits/ 20 - --regex-Rust=/^[ \t]*(pub[ \t]+)?(unsafe[ \t]+)?impl([ \t\n]*<[^>]*>)?[ \t]+(([a-zA-Z0-9_:]+)[ \t]*(<[^>]*>)?[ \t]+(for)[ \t]+)?([a-zA-Z0-9_]+)/\5 \7 \8/i,impls,trait implementations/ 21 - --regex-Rust=/^[ \t]*macro_rules![ \t]+([a-zA-Z0-9_]+)/\1/d,macros,macro definitions/ 22 - 23 11 --exclude=.git 24 12 --exclude=log 25 13 --exclude=tmp