mitry /.hgrc

Mercurial configuration file
# @(#) Mercurial user configuration file

[ui]
username = mitry
editor = vim
ignore = ~/.hgignore
#merge = emacs-merge
fallbackencoding=cp1251
ignore=~/.hgignore
slash=1
debug=0
verbose=0

[defaults]
#log = -v
#status=-q

[extensions]
# To disable an extension that is enabled in 
# system hgrc, prepend its path with '!'

## use CVS like keyword expansion in tracked files
hgext.keyword=

## cConvert repositories from other SCMs into Mercurial
#hgext.convert=

## Highlight syntax in the file revision view of hgweb (depends on Pygments)
#hgext.highlight=

## User-defined command aliases
alias=

## Sign changesets and check signatures using GPG
#hgext.gpg=

## Color output for the status and qseries commands
#color=

#hgext.patchbomb=
#hgext.transplant=
#hgext.mq=
#hgext.parentrevspec=
#hgext.graphlog=
#hgext.fetch=
#hgext.churn=
#hgext.pager=!
#hgext.purge=
#hgext.hgk=
#hgext.record=
#hgext.children=
#hgext.highlight=
#hgext.qct=
#hgext.inotify=!
#hgext.bookmarks=


[alias]
stat = status -mardc
llog = log --limit 10
#slog = log --template '{date|shortdate} [{rev}:{node|short}] {author|person}: {desc|firstline}\n' -l 10
#sin = incoming --template '{date|shortdate} [{rev}:{node|short}] {author|person}: {desc|firstline}\n'
#sout = outgoing --template '{date|shortdate} [{rev}:{node|short}] {author|person}: {desc|firstline}\n'
#sheads = heads --template '{date|shortdate} [{rev}:{node|short}] {author|person}: {desc|firstline}\n'
#sglog = glog --template '[{rev}:{node|short}] by {author|person} \n{desc|fill68}\n\n'

[keyword]
**=
**/CVS/**=ignore
**.png=ignore
**.gif=ignore
**.jpg=ignore
**.exe=ignore
**.dll=ignore
**.so =ignore

[diff]			### Settings used when displaying diffs.
#git=			# Use git extended diff format. 
nodates=1		# Don't include dates in diff headers. 
showfunc=1		# Show which function each change is in. 
ignorews=1		# Ignore white space when comparing lines. 
ignorewsamount=1	# Ignore changes in the amount of white space. 
ignoreblanklines=1	# Ignore changes whose lines are all blank.


[convert]
hg.usebranchnames=0
hg.clonebranches=1

[gpg]
# if cmd is not provided it defaults to gpg
#cmd=/path/to/gpg-command-to-use
# key is optional and can be provided on the command line
key=mitry

[color]
status.modified = magenta bold
status.added = green bold
status.removed = red bold
status.deleted = cyan bold
status.unknown = blue bold
status.ignored = black bold

qseries.applied = blue bold underline
qseries.unapplied = black bold
qseries.missing = red bold

[email]
method=smtp

[smtp]
# Configuration for extensions that need to send email messages. 
host=mail.interzet.ru
port=25
tls=0
#username=
#password=
#local_hostname=

[web]				# Web interface configuration.
description=mitry's Mercurial repository
allow_archive=bz2,gz,zip
allow_push=mitry
encoding=UTF-8
style = gitweb			# looks cleaner from my point of view :)