From ef034b02ffbee27914b869e3f823619e0e81ad10 Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Sat, 21 Jul 2018 13:04:46 -0700 Subject: [PATCH] .hgignore --- default.conf.yaml | 2 +- hg/hgignore | 15 +++++++++++++++ hg/{.hgrc => hgrc} | 1 + 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 hg/hgignore rename hg/{.hgrc => hgrc} (84%) diff --git a/default.conf.yaml b/default.conf.yaml index 155b93b..bc35ed4 100644 --- a/default.conf.yaml +++ b/default.conf.yaml @@ -4,9 +4,9 @@ - clean: ['~', '~/.config'] - link: - ~/.hgrc: hg/.hgrc ~/.emacs.d: emacs/ ~/.config/git: git/ + ~/.config/hg: hg/ ~/.gitignore: git/gitignore ~/.config/flake8: etc/flake8 ~/.config/kak: kak/ diff --git a/hg/hgignore b/hg/hgignore new file mode 100644 index 0000000..30ecf15 --- /dev/null +++ b/hg/hgignore @@ -0,0 +1,15 @@ +syntax: glob + +\#*\# +*~ +*.swp + +.mypy_cache/ +__pycache__/ +venv/ + +node_modules/ +package-lock.json + +.ignore +.root diff --git a/hg/.hgrc b/hg/hgrc similarity index 84% rename from hg/.hgrc rename to hg/hgrc index 6ea8c1c..b802264 100644 --- a/hg/.hgrc +++ b/hg/hgrc @@ -1,5 +1,6 @@ [ui] username = Jeremy Kaplan +ignore = ~/.config/hg/hgignore [extensions] color = hgext.bookmarks =