Method: Twterm::Preferences.default

Defined in:
lib/twterm/preferences.rb

.defaultTwterm::Preferences

Returns an instance having the default value



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/twterm/preferences.rb', line 28

def self.default
  new({
    control: {
      scroll_direction: 'traditional',
    },
    photo_viewer_backend: {
      browser: true,
      imgcat: false,
      quick_look: false,
    },
    notification_backend: {
      inline: true,
      terminal_notifier: false,
      tmux: false,
    },
  })
end