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:
commit
9f57eb3815
4
.ackrc
Normal file
4
.ackrc
Normal file
@ -0,0 +1,4 @@
|
||||
--type-add=ruby=.haml,.rake,.rsel
|
||||
--type-add=css=.scss
|
||||
|
||||
--type-set=markup=.textile,.markdown,.md
|
||||
2
.bashrc
2
.bashrc
@ -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"
|
||||
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
||||
/.vim/sessions
|
||||
.gemrc
|
||||
/.vim/sessions
|
||||
4
Rakefile
4
Rakefile
@ -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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user