git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authormail_redacted_for_web 2024-07-14 10:38:03 +0200
committermail_redacted_for_web 2024-07-14 10:38:03 +0200
commitb2b82097d4e167b285abac53d0e6a291a4f798a7 (patch)
tree009f9c0dc63203653908f622c43fc946aac75648 /.vimrc
parent11376154555ea0a325742d0d81dc282642837940 (diff)
downloaddotfiles-b2b82097d4e167b285abac53d0e6a291a4f798a7.tar.bz2
+weird sha1collisiondetection submodule in README
Diffstat (limited to '.vimrc')
0 files changed, 0 insertions, 0 deletions
light .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 */
# Expectation: .bash_profile exists then this file isn't read at all.
# Reality: well... .profile not being looked at at all _can_ happen.

# Set umask to something world-unreadable in any case
umask 027

# include .bash_profile - if we arrived here at all, it's important to do :-)
if [ -n "$BASH_VERSION" ]; then
	# include .bashrc if it exists
	if [ -f "$HOME/.bash_profile" ]; then
		. "$HOME/.bash_profile"
	fi
fi