updated gitignore to ignore .config/ fixed a typo in the rakefile and installed vi-gitgutter

pull/1/head
Adam Veldhousen 2014-07-14 13:05:00 -05:00
parent 17ae0512df
commit e3daa10baf
4 changed files with 4 additions and 1 deletions

View File

@ -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
#

1
.gitignore vendored
View File

@ -29,3 +29,4 @@ target
Library
Tools/vim/bundle/*
Tools/vim/tutor/
.config/

View File

@ -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

View File

@ -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"