1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2026-02-06 00:53:23 +00:00

Add janus extensions overrides

This commit is contained in:
Holger Just 2011-05-12 21:31:19 +02:00
parent f1ea4312a4
commit ce49a825fc
3 changed files with 8 additions and 5 deletions

1
.janus.rake Normal file
View File

@ -0,0 +1 @@
vim_plugin_task "preview", git://github.com/greyblake/vim-preview.git

4
.vimrc.local Normal file
View File

@ -0,0 +1,4 @@
" Color schema
color molokai
let NERDTreeShowHidden = 1

View File

@ -18,7 +18,7 @@ namespace :install do
end
install :irb, ".irbrc", ".config/irb/*.rb"
install :dot, *%w(.bash_profile .bashrc .gemrc .global_gitignore .gitconfig .ackrc .vimrc.local)
install :dot, *%w(.bash_profile .bashrc .gemrc .global_gitignore .gitconfig .ackrc)
install :bin, "bin/*"
desc "Update all submodules"
@ -34,13 +34,11 @@ namespace :install do
desc "Update the janus bundle"
task :vim => :submodules do
dir = ".vim"
tasks = Rake::Task.tasks
install :vim, *%w(.vim .vimrc.local .janus.rake)
Dir.chdir File.join(File.dirname(__FILE__), dir) do
Dir.chdir File.join(File.dirname(__FILE__), ".vim") do
system "rake"
end
install :vim, dir
end
task :all => [:texmf, :vim]