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 st='git st'
|
||||||
alias log='git lg'
|
alias log='git lg'
|
||||||
alias ciam='git ci -am'
|
alias ciam='git ci -am'
|
||||||
|
alias got='git'
|
||||||
|
alias goit='git'
|
||||||
|
|
||||||
alias ss="script/server -b 127.0.0.1"
|
alias ss="script/server -b 127.0.0.1"
|
||||||
alias sc="script/console"
|
alias sc="script/console"
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
/.vim/sessions
|
/.vim/sessions
|
||||||
.gemrc
|
|
||||||
|
|||||||
4
Rakefile
4
Rakefile
@ -9,7 +9,7 @@ namespace :install do
|
|||||||
full = File.join Dir.pwd, file
|
full = File.join Dir.pwd, file
|
||||||
Dir.chdir ENV["HOME"] do
|
Dir.chdir ENV["HOME"] do
|
||||||
mkdir_p File.dirname(file)
|
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}"
|
sh "ln -sf #{full} #{file}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -18,7 +18,7 @@ namespace :install do
|
|||||||
end
|
end
|
||||||
|
|
||||||
install :irb, ".irbrc", ".config/irb/*.rb"
|
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/*"
|
install :bin, "bin/*"
|
||||||
|
|
||||||
desc "installs the custom texmf folder"
|
desc "installs the custom texmf folder"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user