Skip to content

Commit

Permalink
Update stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
vitek committed Jan 8, 2011
1 parent 668a247 commit 8efd011
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 7 deletions.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GCONFTOOL = gconftool-2

install: install-git install-hg install-emacs install-vim install-gconf
install: install-git install-hg install-bzr install-emacs install-vim install-gconf

install-git:
install -m 0644 git/gitconfig ~/.gitconfig
Expand All @@ -9,6 +9,12 @@ install-git:
install-hg:
install -m 0644 hgrc ~/.hgrc

install-bzr:
install -d ~/.bazaar
for i in authentication.conf bazaar.conf ignore; do \
install -m 0644 bzr/$$i ~/.bazaar/; \
done;

install-emacs:
install -m 0644 emacs/emacs.el ~/.emacs

Expand Down
5 changes: 0 additions & 5 deletions README
Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
This is my public rc-files.
Feel free to examine and use it.

vim requires:
* ropemode
* ropevim

4 changes: 4 additions & 0 deletions bzr/authentication.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[Launchpad]
host = .launchpad.net
scheme = ssh
user = vitja-makarov
2 changes: 2 additions & 0 deletions bzr/bazaar.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[DEFAULT]
launchpad_username = vitja-makarov
8 changes: 8 additions & 0 deletions bzr/ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.a
*.o
*.py[co]
*.so
*.sw[nop]
*~
.#*
[#]*#
2 changes: 1 addition & 1 deletion vim/vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ filetype indent on

set ttyfast

set tabstop=4 shiftwidth=4 softtabstop=4 autoindent smartindent
set tabstop=4 shiftwidth=4 softtabstop=4 autoindent smartindent expandtab

" prefer unix over windows over mac formats
set ffs=unix,dos,mac
Expand Down

0 comments on commit 8efd011

Please sign in to comment.