forked from NeoVintageous/NeoVintageous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Preferences.sublime-settings
177 lines (151 loc) · 4.93 KB
/
Preferences.sublime-settings
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
// Current search style.
//
// Valid values are:
// fill
// outline
// underline
// squiggly_underline
// stippled_underline
"neovintageous_search_cur_style": "fill",
// Incremental search style.
//
// Valid values are:
// fill
// outline
// underline
// squiggly_underline
// stippled_underline
"neovintageous_search_inc_style": "fill",
// Search occurences style.
//
// Valid values are:
// fill
// outline
// underline
// squiggly_underline
// stippled_underline
"neovintageous_search_occ_style": "fill",
// Visual bell style.
//
// Valid values are:
// blink
// view
// views
"vintageous_bell": "blink",
// Visual bell color-scheme.
//
// Valid values are:
// dark
// light
// Or a color scheme resource path:
// Packages/Name/name.hidden-color-scheme
"vintageous_bell_color_scheme": "dark",
// If you do not type anything on a new line e.g. pressing <Esc> after "o"
// or "O", the indent is deleted again. To preserve the leading whitespace
// on after pressing <esc> set this setting to false.
"vintageous_clear_auto_indent_on_esc": true,
// Default mode to use when activating or switching views.
//
// Valid values are: "insert"
//
// mode | description
// ------ | -----------
// insert | Enter insert mode when opening or switching views or when
// the window receives focus and is not in visual mode i.e. visual
// mode selections are retained when the window loses focus.
"vintageous_default_mode": "",
// Plugin
//
// A port of https://github.com/tpope/vim-abolish.
"vintageous_enable_abolish": true,
// Plugin
//
// A port of https://github.com/tpope/vim-commentary.
"vintageous_enable_commentary": true,
// Plugin
//
// A port of https://github.com/terryma/vim-multiple-cursors.
"vintageous_enable_multiple_cursors": true,
// Plugin
//
// A port of https://github.com/justinmk/vim-sneak.
"vintageous_enable_sneak": false,
// Plugin
//
// Sublime Text tweaks.
"vintageous_enable_sublime": true,
// Plugin
//
// A port of https://github.com/tpope/vim-surround.
"vintageous_enable_surround": true,
// Plugin
//
// A port of https://github.com/tpope/vim-unimpaired.
"vintageous_enable_unimpaired": true,
// Plugin
//
// A port of https://github.com/machakann/vim-highlightedyank.
"highlightedyank": true,
// Assign number of time in milliseconds.
"highlightedyank_duration": 1000,
// Valid values are:
// fill
// outline
// underline
// squiggly_underline
// stippled_underline
"highlightedyank_style": "fill",
// When quitting the last window exit ST.
"vintageous_exit_when_quiting_last_window": true,
// Delegate configured keys to be handled by Sublime Text.
//
// For example to use native Sublime Text behaviour for ctrl+f:
//
// "vintageous_handle_keys": {
// "<C-f>": false
// }
//
// Keys can be handled for specific modes by using a prefix:
//
// n_ - Normal
// i_ - Insert
// v_ - Visual
// V_ - Visual line
// b_ - Visual block
// s_ - Select
//
// For example to only delegate <C-w> in insert and visual modes:
//
// "vintageous_handle_keys": {
// "i_<C-w>": false
// "v_<C-w>": false
// }
"vintageous_handle_keys": {},
// Exit visual multi cursor visual on quit key.
//
// When false then pressing a quit key (e.g. <Esc> or J) in multiple cursor
// visual mode the visual mode exits to normal mode but keeps the cursors.
//
// When true then pressing a quit key (e.g. <Esc> or J) in multiple cursor
// visual mode the visual mode exits all multiple cursors.
"vintageous_multi_cursor_exit_from_visual_mode": false,
// Reset to normal mode when a tab is activated.
"vintageous_reset_mode_when_switching_tabs": true,
// Show output panel from shell commands.
"vintageous_shell_silent": false,
// 0: Always case-sensitive
// 1: Case sensitivity is determined by 'ignorecase' and 'smartcase'.
"vintageous_sneak_use_ic_scs": 0,
// Name of program to use when starting a ":shell".
//
// Example: gnome-terminal
"vintageous_terminal": null,
// Enable key bindings prefaced by the control-key.
"vintageous_use_ctrl_keys": true,
// Enable key bindings prefaced by the super-key, otherwise known as the
// command-key in OSX, and as the windows-key in Windows.
"vintageous_use_super_keys": false,
// Propagate copy actions to the system clipboard.
"vintageous_use_sys_clipboard": false
}