Sha256: 5298761252927f117ca54be4d125108af847241ca81fdbbe3629525240ceccd2

Contents?: true

Size: 489 Bytes

Versions: 1

Compression:

Stored size: 489 Bytes

Contents

require_relative "../../lib/vim_printer/configuration"
module VimPrinter
  class << self
    def update_config
      VimPrinter.configure do |config|
        config.options[:html] = [
          "-c 'let g:html_expand_tabs = 1'",
          "-c 'let g:html_use_css = 1'",
          "-c 'let g:html_no_progress = 1'",
          "-c 'let g:html_number_lines = 0'",
          "-c 'let g:html_use_xhtml = 1'",
          "-c 'let g:html_ignore_folding = 1'"
        ]
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vim_printer-0.2.3 config/initializers/vim_printer.rb