summaryrefslogtreecommitdiff
path: root/lite-xl/user_settings.lua
blob: cb11461edac04ad2321165903da99e10d5858763 (plain)
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
72
73
74
75
76
77
78
return {
  ["config"] = {
    ["always_show_tabs"] = true,
    ["animate_drag_scroll"] = true,
    ["borderless"] = false,
    ["disabled_plugins"] = {
      ["bigclock"] = true,
      ["smallclock"] = true,
      ["statusclock"] = true,
      ["tabnumbers"] = true,
      ["unboundedscroll"] = true,
      ["wordcount"] = true
    },
    ["enabled_plugins"] = {
      ["custom_caret"] = true,
      ["datetimestamps"] = true,
      ["drawwhitespace"] = true,
      ["minimap"] = true,
      ["scale"] = false,
      ["treeview"] = true
    },
    ["font"] = {
      ["fonts"] = {
        [1] = {
          ["name"] = "Fira Sans Regular",
          ["path"] = "/opt/lite-xl/data/fonts/FiraSans-Regular.ttf"
        },
        [2] = {
          ["name"] = "FiraCode Nerd Font Retina",
          ["path"] = "/usr/share/fonts/TTF/Fira Code Retina Nerd Font Complete.ttf"
        }
      },
      ["options"] = {
        ["antialiasing"] = "subpixel",
        ["bold"] = false,
        ["hinting"] = "slight",
        ["italic"] = false,
        ["size"] = 15,
        ["smoothing"] = false,
        ["strikethrough"] = false,
        ["underline"] = false
      }
    },
    ["plugins"] = {
      ["autoreload"] = {
        ["always_show_nagview"] = true
      },
      ["centerdoc"] = {
        ["enabled"] = false
      },
      ["drawwhitespace"] = {
        ["show_trailing_error"] = true
      },
      ["lineguide"] = {
        ["enabled"] = false
      },
      ["linewrapping"] = {
        ["enable_by_default"] = true,
        ["mode"] = "word"
      },
      ["minimap"] = {
        ["avoid_small_docs"] = true
      },
      ["scale"] = {
        ["default_scale"] = "autodetect"
      },
      ["scalestatus"] = {
        ["enabled"] = true
      },
      ["typingspeed"] = {
        ["enabled"] = false
      }
    },
    ["skip_plugins_version"] = true,
    ["tab_type"] = "hard",
    ["theme"] = "only_dark"
  }
}