Files
dotfiles/pryrc
2023-01-25 16:53:25 -05:00

7 lines
236 B
Plaintext

# frozen_string_literal: true
require 'awesome_print'
Pry.print = proc { |output, value| output.puts value.ai({ limit: true }) }
Pry.config.editor = proc { |file, line| "code --wait --goto #{file}:#{line} --disable-workspace-trust" }