changeset 28:5db6b52ebf51

Merged .hg* files, READMEs, etc.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 21 Nov 2011 20:59:15 -0800
parents 0d15dd4e2e16
children 8368bbb1ba27
files .hgignore .hgsub .hgsubstate .hgsubstate README.md hgrc/README.md hgrc/hgignore_global hgrc/make_links.cmd install.cmd install.sh vim/.hgignore vim/.hgsub vim/.hgsubstate vim/README.md
diffstat 13 files changed, 63 insertions(+), 45 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore	Mon Nov 21 20:59:15 2011 -0800
@@ -0,0 +1,5 @@
+syntax:glob
+temp/*
+backup/*
+.netrwhist
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgsub	Mon Nov 21 20:59:15 2011 -0800
@@ -0,0 +1,12 @@
+vim/bundle/colorschemes = [git]https://github.com/flazz/vim-colorschemes.git
+vim/bundle/command-t = [git]https://github.com/wincent/Command-T.git
+vim/bundle/gundo = https://bitbucket.org/sjl/gundo.vim
+vim/bundle/markdown = [git]https://github.com/tpope/vim-markdown.git
+vim/bundle/surround = [git]https://github.com/tpope/vim-surround.git
+vim/bundle/commentary = [git]git://github.com/tpope/vim-commentary.git
+vim/bundle/ragtag = [git]git://github.com/tpope/vim-ragtag.git
+vim/bundle/repeat = [git]git://github.com/tpope/vim-repeat.git
+vim/bundle/haml = [git]git://github.com/tpope/vim-haml.git
+vim/bundle/supertab = [git]https://github.com/ervandew/supertab.git
+vim/bundle/nerdtree = [git]https://github.com/scrooloose/nerdtree.git
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgsubstate	Mon Nov 21 20:59:15 2011 -0800
@@ -0,0 +1,11 @@
+ vim/bundle/colorschemes
+ vim/bundle/command-t
+ vim/bundle/commentary
+0000000000000000000000000000000000000000 vim/bundle/gundo
+ vim/bundle/haml
+ vim/bundle/markdown
+ vim/bundle/nerdtree
+ vim/bundle/ragtag
+ vim/bundle/repeat
+ vim/bundle/supertab
+ vim/bundle/surround
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/README.md	Mon Nov 21 20:59:15 2011 -0800
@@ -0,0 +1,17 @@
+
+These are my 'dot files'. You probably ended up here by mistake -- unless you're me, that is. It doesn't mean there's nothing interestingaround here, but it's unlikely.
+
+VIM
+===
+
+My [Vim] environment in `/vim`. Feel free to poke around and see how I my setup works but keep in mind I'm myself a Vim newbie so this may not be the best place to look at if you want to learn anything worthwhile.
+
+MERCURIAL
+=========
+
+There's also my [Mercurial] configuration files. Those are pretty boring.
+
+
+  [vim]: http://vim.org
+  [mercurial]: http://hg-scm.com
+
--- a/hgrc/README.md	Mon Nov 21 20:58:56 2011 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-
-These are my [Mercurial] configuration files.
-
-
-  [mercurial]: http://hg-scm.com
-
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hgrc/hgignore_global	Mon Nov 21 20:59:15 2011 -0800
@@ -0,0 +1,4 @@
+syntax: glob
+
+*~
+.DS_Store
--- a/hgrc/make_links.cmd	Mon Nov 21 20:58:56 2011 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-rem @echo off
-
-mklink "%userprofile%\mercurial.ini" "%~dp0\hgrc"
-
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/install.cmd	Mon Nov 21 20:59:15 2011 -0800
@@ -0,0 +1,6 @@
+rem @echo off
+
+mklink /D "%userprofile%\vimfiles" "%~dp0\vim"
+mklink "%userprofile%\_vimrc" "%~dp0\vim\vimrc"
+mklink "%userprofile%\mercurial.ini" "%~dp0\hgrc\hgrc"
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/install.sh	Mon Nov 21 20:59:15 2011 -0800
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+CWD="$( cd "$( dirname "$0" )" && pwd )"
+
+ln -s "$CWD/vim"        "$HOME/.vim"
+ln -s "$CWD/vim/vimrc"  "$HOME/.vimrc"
+ln -s "$CWD/hgrc/hgrc"  "$HOME/.hgrc"
+
--- a/vim/.hgignore	Mon Nov 21 20:58:56 2011 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-syntax:glob
-temp/*
-backup/*
-.netrwhist
-
--- a/vim/.hgsub	Mon Nov 21 20:58:56 2011 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-bundle/colorschemes = [git]https://github.com/flazz/vim-colorschemes.git
-bundle/command-t = [git]https://github.com/wincent/Command-T.git
-bundle/gundo = https://bitbucket.org/sjl/gundo.vim
-bundle/markdown = [git]https://github.com/tpope/vim-markdown.git
-bundle/surround = [git]https://github.com/tpope/vim-surround.git
-bundle/commentary = [git]git://github.com/tpope/vim-commentary.git
-bundle/ragtag = [git]git://github.com/tpope/vim-ragtag.git
-bundle/repeat = [git]git://github.com/tpope/vim-repeat.git
-bundle/haml = [git]git://github.com/tpope/vim-haml.git
-bundle/supertab = [git]https://github.com/ervandew/supertab.git
-bundle/nerdtree = [git]https://github.com/scrooloose/nerdtree.git
-
--- a/vim/.hgsubstate	Mon Nov 21 20:58:56 2011 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,11 +0,0 @@
-c51066bd048ca47e9b6d1385703a4d3462ea8c93 bundle/colorschemes
-f19aee00f6b7a9c451a7aa168e05f0cdd0d99374 bundle/command-t
-62b72580aba57cb5185bd077ac7a905c1c6893ea bundle/commentary
-91190e67720f852c17602504d5225d4e675b6499 bundle/gundo
-a995d4aabb794bd60028537ecb41ca7f2c738e65 bundle/haml
-2b18a534162bc2c3964cb3a8fe42ca8c100bb571 bundle/markdown
-30f6bcc30caf76bc1213f5c3d4001ba5d5fbe7fc bundle/nerdtree
-bdc8b580b5b583aeb43efb19aac2ab8ce5566dff bundle/ragtag
-cdffdd43816ddaeee858ae42da3ab6ddcfa25d19 bundle/repeat
-688b5d706c21fbc6b2db6499f3cfbdeb35309b5a bundle/supertab
-4eb2cdfccc016889acfa3b5d63e8f390a87863cf bundle/surround
--- a/vim/README.md	Mon Nov 21 20:58:56 2011 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-
-This is my own [Vim] environment. Feel free to poke around and see how I my setup
-works but keep in mind I'm myself a Vim newbie so this may not be the best place
-to look at if you want to learn anything worthwhile.
-
-  [vim]: http://vim.org
-