1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2025-10-17 19:41:01 +00:00

Merge branch 'master' of ssh://github.com/meineerde/dotfiles

This commit is contained in:
Holger Just 2011-03-03 12:38:15 +01:00
commit 9f57eb3815
5 changed files with 10 additions and 4 deletions

4
.ackrc Normal file
View File

@ -0,0 +1,4 @@
--type-add=ruby=.haml,.rake,.rsel
--type-add=css=.scss
--type-set=markup=.textile,.markdown,.md

View File

@ -212,6 +212,8 @@ alias gdiff='git diff'
alias st='git st'
alias log='git lg'
alias ciam='git ci -am'
alias got='git'
alias goit='git'
alias ss="script/server -b 127.0.0.1"
alias sc="script/console"

1
.gemrc Normal file
View File

@ -0,0 +1 @@
gem: --no-rdoc --no-ri

3
.gitignore vendored
View File

@ -1,2 +1 @@
/.vim/sessions
.gemrc
/.vim/sessions

View File

@ -9,7 +9,7 @@ namespace :install do
full = File.join Dir.pwd, file
Dir.chdir ENV["HOME"] do
mkdir_p File.dirname(file)
sh "rm #{file}" if (File.exist? file and File.directory? full)
File.delete(file) if (File.exist? file and File.directory? full)
sh "ln -sf #{full} #{file}"
end
end
@ -18,7 +18,7 @@ namespace :install do
end
install :irb, ".irbrc", ".config/irb/*.rb"
install :dot, ".bash_profile", ".bashrc", ".gemrc", ".vimrc", ".vim", ".gitignore", ".gitconfig"
install :dot, *%w(.bash_profile .bashrc .gemrc .global_gitignore .gitconfig .ackrc)
install :bin, "bin/*"
desc "installs the custom texmf folder"