git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.pylintrc
diff options
context:
space:2025-02-23 11:44:50 +0100
committermail_redacted_for_web 2025-02-23 11:44:50 +0100
commitb1d68027a6c0ee7f845487697aaaa2f3f7324d64 (patch)
tree9b72ea20be92a20091f7929add3393d9fff07c75 /.pylintrc
parent460ad15672e2ad6d56a601b951161ea3d9cb5f40 (diff)
downloaddotfiles-b1d68027a6c0ee7f845487697aaaa2f3f7324d64.tar.bz2
+ Alma colours
Diffstat (limited to '.pylintrc')
0 files changed, 0 insertions, 0 deletions
r: #00aaaa; text-decoration: underline } /* Name.Namespace */ .highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #aa0000 } /* Name.Variable */ .highlight .ow { color: #0000aa } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #009999 } /* Literal.Number.Bin */ .highlight .mf { color: #009999 } /* Literal.Number.Float */ .highlight .mh { color: #009999 } /* Literal.Number.Hex */ .highlight .mi { color: #009999 } /* Literal.Number.Integer */ .highlight .mo { color: #009999 } /* Literal.Number.Oct */ .highlight .sa { color: #aa5500 } /* Literal.String.Affix */ .highlight .sb { color: #aa5500 } /* Literal.String.Backtick */ .highlight .sc { color: #aa5500 } /* Literal.String.Char */ .highlight .dl { color: #aa5500 } /* Literal.String.Delimiter */ .highlight .sd { color: #aa5500 } /* Literal.String.Doc */ .highlight .s2 { color: #aa5500 } /* Literal.String.Double */ .highlight .se { color: #aa5500 } /* Literal.String.Escape */ .highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */ .highlight .si { color: #aa5500 } /* Literal.String.Interpol */ .highlight .sx { color: #aa5500 } /* Literal.String.Other */ .highlight .sr { color: #009999 } /* Literal.String.Regex */ .highlight .s1 { color: #aa5500 } /* Literal.String.Single */ .highlight .ss { color: #0000aa } /* Literal.String.Symbol */ .highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */ .highlight .fm { color: #00aa00 } /* Name.Function.Magic */ .highlight .vc { color: #aa0000 } /* Name.Variable.Class */ .highlight .vg { color: #aa0000 } /* Name.Variable.Global */ .highlight .vi { color: #aa0000 } /* Name.Variable.Instance */ .highlight .vm { color: #aa0000 } /* Name.Variable.Magic */ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
#!/usr/bin/env sh
rm -rf ./git-prompt
git -c submodule.sha1collisiondetection.update=none clone --no-checkout --depth 1 https://github.com/git/git.git ./git-prompt &&\
(
	cd ./git-prompt || exit 110
	#mkdir -pv contrib/completion || exit 111
	#git show HEAD:contrib/completion/git-prompt.sh > contrib/completion/git-prompt.sh || exit 112
	git restore --staged contrib/completion/git-prompt.sh
	git checkout contrib/completion/git-prompt.sh
	# if you can't cope with git reporting a truckload of deleted files, do this:
	#rm -rf .git
	# ...mind you this will alwasys pull in the whole repository on checkout/clone.
)