updated gitignore to ignore .config/ fixed a typo in the rakefile and installed vi-gitgutter
parent
17ae0512df
commit
e3daa10baf
1
.bashrc
1
.bashrc
|
|
@ -34,6 +34,7 @@ export EDITOR=vim # Default Editor
|
|||
export VISUAL=$EDITOR # Visual not really used differently from EDITOR anymore
|
||||
export LESS='-iMR' # Case insensite search, verbose prompting and raw output
|
||||
export PAGER=less # Used to display text / man files
|
||||
export PORT=3001
|
||||
|
||||
|
||||
#
|
||||
|
|
|
|||
|
|
@ -29,3 +29,4 @@ target
|
|||
Library
|
||||
Tools/vim/bundle/*
|
||||
Tools/vim/tutor/
|
||||
.config/
|
||||
|
|
|
|||
|
|
@ -28,3 +28,4 @@ git://github.com/chrisbra/csv.vim.git
|
|||
git://github.com/kchmck/vim-coffee-script.git
|
||||
git://github.com/vim-scripts/django.vim.git
|
||||
git://github.com/digitaltoad/vim-jade.git
|
||||
git://github.com/airblade/vim-gitgutter.git
|
||||
|
|
|
|||
2
rakefile
2
rakefile
|
|
@ -42,7 +42,7 @@ namespace :vim do
|
|||
|
||||
desc 'adds and installs a new plugin'
|
||||
task :addPlugin, [:sourceName] do |t, args|
|
||||
raise "Must specify git repo to pull from." unless args.source not(nil)
|
||||
raise "Must specify git repo to pull from." unless args.sourceName not(nil)
|
||||
source = "git://github.com/#{args.sourceName}.git"
|
||||
File.open pluginsFile, 'a' do |file|
|
||||
file.puts "#{source}\n"
|
||||
|
|
|
|||
Loading…
Reference in New Issue