-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pryrc
71 lines (62 loc) · 2.48 KB
/
.pryrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# ===== editor
Pry.editor = 'vim'
# ===== command aliases
Pry.config.commands.alias_command 'c', 'continue' rescue nil
Pry.config.commands.alias_command 's', 'step' rescue nil
Pry.config.commands.alias_command 'n', 'next' rescue nil
Pry.config.commands.alias_command 'r!', 'reload!' rescue nil
Pry.config.commands.alias_command "e", "exit"
Pry.config.commands.alias_command "x", "exit"
Pry.config.commands.alias_command "em", "edit-method"
Pry.config.commands.alias_command "ss", "show-source"
# ===== theme
Pry.config.color = false # true
Pry.config.ls['class_constant_color'] = :bright_blue
Pry.config.ls['instance_var_color'] = :bright_cyan
# === Listing config ===
# Better colors - by default the headings for methods are too
# similar to method name colors leading to a "soup"
# These colors are optimized for use with Solarized scheme
# for your terminal
# Pry.config.ls.separator = "\n" # new lines between methods
# Pry.config.ls.heading_color = :magenta
# Pry.config.ls.public_method_color = :green
# Pry.config.ls.protected_method_color = :yellow
# Pry.config.ls.private_method_color = :bright_black
Pry.config.ls.class_constant_color = :bright_blue
Pry.config.ls.instance_var_color = :bright_cyan
Pry.config.ls.heading_color = :bright_cyan
# ===== plugins
# awesome_print gem: great syntax colorized printing
# look at ~/.aprc for more settings for awesome_print
# require 'interactive_editor'
# begin
# require 'rubygems'
# require 'awesome_print'
# require 'awesome_print_colors'
# AwesomePrint.defaults={
# :theme=>:solorized,
# :indent => 2,
# :sort_keys => true,
# :color => {
# :args => :greenish,
# :array => :pale,
# :bigdecimal => :blue,
# :class => :yellow,
# :date => :greenish,
# :falseclass => :red,
# :fixnum => :blue,
# :float => :blue,
# :hash => :pale,
# :keyword => :cyan,
# :method => :purpleish,
# :nilclass => :red,
# :string => :yellowish,
# :struct => :pale,
# :symbol => :cyanish,
# :time => :greenish,
# :trueclass => :green,
# :variable => :cyanish
# }
# }
# AwesomePrint.defaults={:theme=>:solorized}