-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuk.co.realh.gnvim.gschema.xml
76 lines (76 loc) · 3.17 KB
/
uk.co.realh.gnvim.gschema.xml
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
<schemalist>
<enum id="uk.co.realh.gnvim.fontsrc">
<value nick="gtk" value="0"/>
<value nick="sys" value="1"/>
<value nick="prefs" value="2"/>
</enum>
<schema id="uk.co.realh.gnvim" path="/uk/co.realh/gnvim/"
gettext-domain="gnvim">
<key name="dark" type="b">
<default>false</default>
<summary>Use dark theme</summary>
<description>Whether to use the dark version of the UI
theme</description>
</key>
<key name="font-source" enum="uk.co.realh.gnvim.fontsrc">
<default>"gtk"</default>
<summary>How to choose the main font</summary>
<description>gtk=Gtk's default monospace font;
sys=System's monospace font;
prefs=gnvim's 'font' setting
</description>
</key>
<key name="font" type="s">
<summary>Font description</summary>
<default l10n="messages">"Monospace 11"</default>
<description>Description of font to use in editor
windows</description>
</key>
<key name="maximise" type="b">
<default>false</default>
<summary>Maximise new windows</summary>
<description>Whether to open new windows maximised
(overrides columns and rows)</description>
</key>
<key name="init-file" type="s">
<summary>Neovim init file</summary>
<default l10n="messages">""</default>
<description>Pathname of an alternative init.vim file
(blank for default)</description>
</key>
<key name="cursor-width" type="u">
<default>2</default>
<range min="1" max="16"/>
<summary>Width of beam cursor</summary>
<description>Width of the beam cursor used in insert
mode, in pixels</description>
</key>
<key name="cursor-bg" type="s">
<default>""</default>
<summary>Cursor background colour</summary>
<description>The cursor's main/background colour in #rrggbb or
rgb(r,g,b) notation etc or blank for default (inverse of
default background colour)</description>
</key>
<key name="cursor-fg" type="s">
<default>""</default>
<summary>Cursor foreground colour</summary>
<description>Foreground colour of text under the cursor in #rrggbb
or rgb(r,g,b) notation etc or blank for default (inverse of
default text colour)</description>
</key>
<key name="sync-shada" type="b">
<default>true</default>
<summary>Sync shared data on focus changes</summary>
<description>If true, the UI will request that nvim instances save
the shada file (formerly known as viminfo) when they lose focus and
load it when they gain focus</description>
</key>
<key name="gui-tabs" type="b">
<default>true</default>
<summary>Use GUI tabs</summary>
<description>Show tabs in the GUI instead of as text in the nvim
instance</description>
</key>
</schema>
</schemalist>