]> git.lizzy.rs Git - micro.git/blob - runtime/help/options.md
8859f30e2f96c0c291aa07e668085da155070ea6
[micro.git] / runtime / help / options.md
1 # Options
2
3 Micro stores all of the user configuration in its configuration directory.
4
5 Micro uses `$MICRO_CONFIG_HOME` as the configuration directory. If this environment
6 variable is not set, it uses `$XDG_CONFIG_HOME/micro` instead. If that
7 environment variable is not set, it uses `~/.config/micro` as the configuration
8 directory. In the documentation, we use `~/.config/micro` to refer to the
9 configuration directory (even if it may in fact be somewhere else if you have
10 set either of the above environment variables).
11
12 Here are the available options:
13
14 * `autoindent`: when creating a new line, use the same indentation as the 
15    previous line.
16
17         default value: `true`
18
19 * `backup`: micro will automatically keep backups of all open buffers. Backups
20    are stored in `~/.config/micro/backups` and are removed when the buffer is
21    closed cleanly. In the case of a system crash or a micro crash, the contents
22    of the buffer can be recovered automatically by opening the file that
23    was being edited before the crash, or manually by searching for the backup
24    in the backup directory. Backups are made in the background when a buffer is
25    modified and the latest backup is more than 8 seconds old, or when micro
26    detects a crash. It is highly recommended that you leave this feature enabled.
27
28     default value: `true`
29
30 * `basename`: in the infobar, show only the basename of the file being edited
31    rather than the full path.
32
33     default value: `false`
34
35 * `colorcolumn`: if this is not set to 0, it will display a column at the
36   specified column. This is useful if you want column 80 to be highlighted
37   special for example.
38
39         default value: `0`
40
41 * `colorscheme`: loads the colorscheme stored in 
42    $(configDir)/colorschemes/`option`.micro, This setting is `global only`.
43
44         default value: `default`
45
46         Note that the default colorschemes (default, solarized, and solarized-tc)
47         are not located in configDir, because they are embedded in the micro binary.
48
49         The colorscheme can be selected from all the files in the 
50         ~/.config/micro/colorschemes/ directory. Micro comes by default with three
51         colorschemes:
52
53         You can read more about micro's colorschemes in the `colors` help topic
54         (`help colors`).
55
56 * `cursorline`: highlight the line that the cursor is on in a different color
57    (the color is defined by the colorscheme you are using).
58
59         default value: `true`
60
61 * `encoding`: the encoding to open and save files with. Supported encodings
62    are listed at https://www.w3.org/TR/encoding/.
63
64     default value: `utf-8`
65
66 * `eofnewline`: micro will automatically add a newline to the file.
67
68         default value: `false`
69
70 * `fastdirty`: this determines what kind of algorithm micro uses to determine if
71    a buffer is modified or not. When `fastdirty` is on, micro just uses a
72    boolean `modified` that is set to `true` as soon as the user makes an edit.
73    This is fast, but can be inaccurate. If `fastdirty` is off, then micro will
74    hash the current buffer against a hash of the original file (created when the
75    buffer was loaded). This is more accurate but obviously more resource
76    intensive. This option is only for people who really care about having
77    accurate modified status.
78
79         default value: `true`
80
81 * `fileformat`: this determines what kind of line endings micro will use for the
82    file. UNIX line endings are just `\n` (linefeed) whereas dos line endings are
83    `\r\n` (carriage return + linefeed). The two possible values for this option
84    are `unix` and `dos`. The fileformat will be automatically detected (when you
85    open an existing file) and displayed on the statusline, but this option is
86    useful if you would like to change the line endings or if you are starting a
87    new file.
88
89         default value: `unix`
90
91 * `filetype`: sets the filetype for the current buffer. Set this option to `off`
92    to completely disable filetype detection.
93
94         default value: `unknown`. This will be automatically overridden depending
95     on the file you open.
96
97 * `ignorecase`: perform case-insensitive searches.
98
99         default value: `false`
100
101 * `indentchar`: sets the indentation character.
102
103         default value: ` ` (space)
104
105 * `infobar`: enables the line at the bottom of the editor where messages are
106    printed. This option is `global only`.
107
108         default value: `true`
109
110 * `keepautoindent`: when using autoindent, whitespace is added for you. This
111    option determines if when you move to the next line without any insertions
112    the whitespace that was added should be deleted to remove trailing whitespace.
113    By default, the autoindent whitespace is deleted if the line was left empty.
114
115         default value: `false`
116
117 * `keymenu`: display the nano-style key menu at the bottom of the screen. Note
118    that ToggleKeyMenu is bound to `Alt-g` by default and this is displayed in
119    the statusline. To disable this, simply by `Alt-g` to `UnbindKey`.
120
121         default value: `false`
122
123 * `matchbrace`: underline matching braces for '()', '{}', '[]' when the cursor
124    is on a brace character.
125
126     default value: `true`
127
128 * `mkparents`: if a file is opened on a path that does not exist, the file cannot
129    be saved because the parent directories don't exist. This option lets micro
130    automatically create the parent directories in such a situation.
131
132     default value: `false`
133
134 * `mouse`: whether to enable mouse support. When mouse support is disabled,
135    usually the terminal will be able to access mouse events which can be useful
136    if you want to copy from the terminal instead of from micro (if over ssh for
137    example, because the terminal has access to the local clipboard and micro
138    does not).
139
140         default value: `true`
141
142 * `rmtrailingws`: micro will automatically trim trailing whitespaces at ends of
143    lines.
144
145         default value: `false`
146
147 * `ruler`: display line numbers.
148
149         default value: `true`
150
151 * `savecursor`: remember where the cursor was last time the file was opened and
152    put it there when you open the file again. Information is saved to
153    `~/.config/micro/buffers/`
154
155         default value: `false`
156
157 * `savehistory`: remember command history between closing and re-opening
158    micro. Information is saved to `~/.config/micro/buffers/history`.
159
160     default value: `true`
161
162 * `saveundo`: when this option is on, undo is saved even after you close a file
163    so if you close and reopen a file, you can keep undoing. Information is
164    saved to `~/.config/micro/buffers/`.
165
166         default value: `false`
167
168 * `scrollbar`: display a scroll bar
169
170     default value: `false`
171
172 * `scrollmargin`: margin at which the view starts scrolling when the cursor
173    approaches the edge of the view.
174
175         default value: `3`
176
177 * `scrollspeed`: amount of lines to scroll for one scroll event.
178
179         default value: `2`
180
181 * `smartpaste`: add leading whitespace when pasting multiple lines.
182    This will attempt to preserve the current indentation level when pasting an
183    unindented block.
184
185         default value: `true`
186
187 * `softwrap`: wrap lines that are too long to fit on the screen.
188
189         default value: `false`
190
191 * `splitbottom`: when a horizontal split is created, create it below the
192    current split.
193
194         default value: `true`
195
196 * `splitright`: when a vertical split is created, create it to the right of the
197    current split.
198
199         default value: `true`
200
201 * `statusformatl`: format string definition for the left-justified part of the
202    statusline. Special directives should be placed inside `$()`. Special
203    directives include: `filename`, `modified`, `line`, `col`, `opt`, `bind`.
204    The `opt` and `bind` directives take either an option or an action afterward
205    and fill in the value of the option or the key bound to the action.
206
207     default value: `$(filename) $(modified)($(line),$(col)) $(opt:filetype)
208                     $(opt:fileformat) $(opt:encoding)`
209
210 * `statusformatl`: format string definition for the left-justified part of the
211    statusline.
212
213     default value: `$(bind:ToggleKeyMenu): show bindings, $(bind:ToggleHelp):
214                     toggle help`
215
216 * `statusline`: display the status line at the bottom of the screen.
217
218         default value: `true`
219
220 * `sucmd`: specifies the super user command. On most systems this is "sudo" but
221    on BSD it can be "doas." This option can be customized and is only used when
222    saving with su.
223
224         default value: `sudo`
225
226 * `syntax`: enables syntax highlighting.
227
228         default value: `true`
229
230 * `tabmovement`: navigate spaces at the beginning of lines as if they are tabs
231    (e.g. move over 4 spaces at once). This option only does anything if
232    `tabstospaces` is on.
233
234         default value: `false`
235
236 * `tabsize`: the size in spaces that a tab character should be displayed with.
237
238         default value: `4`
239
240 * `tabstospaces`: use spaces instead of tabs.
241
242         default value: `false`
243
244 * `useprimary` (only useful on unix): defines whether or not micro will use the
245    primary clipboard to copy selections in the background. This does not affect
246    the normal clipboard using Ctrl-c and Ctrl-v.
247
248         default value: `true`
249
250 ---
251
252 Plugin options: all plugins come with a special option to enable or disable them. The option
253 is a boolean with the same name as the plugin itself.
254
255 Any option you set in the editor will be saved to the file
256 ~/.config/micro/settings.json so, in effect, your configuration file will be 
257 created for you. If you'd like to take your configuration with you to another
258 machine, simply copy the settings.json to the other machine.
259
260 ## Global and local settings
261
262 You can set these settings either globally or locally. Locally means that the
263 setting won't be saved to `~/.config/micro/settings.json` and that it will only
264 be set in the current buffer. Setting an option globally is the default, and
265 will set the option in all buffers.
266
267 The `colorscheme` option is global only, and the `filetype` option is local
268 only. To set an option locally, use `setlocal` instead of `set`.
269
270 In the `settings.json` file you can also put set options locally by specifying either
271 a glob or a filetype. Here is an example which has `tabstospaces` on for all files except Go
272 files, and `tabsize` 4 for all files except Ruby files:
273
274 ```json
275 {
276         "ft:go": {
277                 "tabstospaces": false
278         },
279         "ft:ruby": {
280                 "tabsize": 2
281         },
282         "tabstospaces": true,
283         "tabsize": 4
284 }
285 ```
286
287 Or similarly you can match with globs:
288
289 ```json
290 {
291         "*.go": {
292                 "tabstospaces": false
293         },
294         "*.rb": {
295                 "tabsize": 2
296         },
297         "tabstospaces": true,
298         "tabsize": 4
299 }
300 ```