]> git.lizzy.rs Git - micro.git/blob - runtime/help/options.md
88374e218788ac5da16f777f05a821e418cff440
[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 the `$XDG_CONFIG_HOME/micro` as the configuration directory. As per
6 the XDG spec, if `$XDG_CONFIG_HOME` is not set, `~/.config/micro` is used as 
7 the config directory.
8
9 Here are the options that you can set:
10
11 * `colorscheme`: loads the colorscheme stored in 
12    $(configDir)/colorschemes/`option`.micro
13    This setting is `global only`.
14
15         default value: `default`
16         Note that the default colorschemes (default, solarized, and solarized-tc)
17         are not located in configDir, because they are embedded in the micro binary.
18
19         The colorscheme can be selected from all the files in the 
20         ~/.config/micro/colorschemes/ directory. Micro comes by default with three
21         colorschemes:
22
23     You can read more about micro's colorschemes in the `colors` help topic
24     (`help colors`).
25
26 * `colorcolumn`: if this is not set to 0, it will display a column at the specified
27    column. This is useful if you want column 80 to be highlighted special for example.
28
29         default value: `0`
30
31 * `eofnewline`: micro will automatically add a newline to the file.
32
33         default value: `false`
34
35 * `rmtrailingws`: micro will automatically trim trailing whitespaces at eol.
36
37         default value: `false`
38
39 * `tabsize`: sets the tab size to `option`
40
41         default value: `4`
42
43 * `indentchar`: sets the indentation character
44
45         default value: ` `
46
47 * `infobar`: enables the line at the bottom of the editor where messages are printed.
48    This option is `global only`.
49
50         default value: `on`
51
52 * `filetype`: sets the filetype for the current buffer. This setting is `local only`
53
54     default value: this will be automatically set depending on the file you have open
55
56 * `ignorecase`: perform case-insensitive searches
57
58         default value: `off`
59
60 * `syntax`: turns syntax on or off
61
62         default value: `on`
63
64 * `tabstospaces`: use spaces instead of tabs
65
66         default value: `off`
67
68 * `tabmovement`: navigate spaces at the beginning of lines as if they are tabs (e.g. move over 4 spaces at once).
69    This option only does anything if `tabstospaces` is on.
70
71     default value: `off`
72
73 * `autoindent`: when creating a new line use the same indentation as the 
74    previous line
75
76         default value: `on`
77
78 * `cursorline`: highlight the line that the cursor is on in a different color
79    (the color is defined by the colorscheme you are using)
80
81         default value: `on`
82
83 * `ruler`: display line numbers
84
85         default value: `on`
86
87 * `statusline`: display the status line at the bottom of the screen
88
89         default value: `on`
90
91 * `savecursor`: remember where the cursor was last time the file was opened and
92    put it there when you open the file again
93
94         default value: `off`
95
96 * `saveundo`: when this option is on, undo is saved even after you close a file
97    so if you close and reopen a file, you can keep undoing
98
99         default value: `off`
100
101 * `scrollmargin`: amount of lines you would like to see above and below the cursor
102
103         default value: `3`
104
105 * `scrollspeed`: amount of lines to scroll for one scroll event
106
107         default value: `2`
108
109 * `softwrap`: should micro wrap lines that are too long to fit on the screen
110
111         default value: `off`
112
113 * `splitRight`: when a vertical split is created, should it be created to the right of
114    the current split?
115
116         default value: `on`
117
118 * `splitBottom`: when a horizontal split is created, should it be created below the
119    current split?
120
121         default value: `on`
122
123 * `autosave`: micro will save the buffer every 8 seconds automatically.
124    Micro also will automatically save and quit when you exit without asking.
125    Be careful when using this feature, because you might accidentally save a file,
126    overwriting what was there before.
127
128         default value: `off`
129
130 * `pluginchannels`: contains all the channels micro's plugin manager will search
131    for plugins in. A channel is simply a list of 'repository' json files which contain
132    metadata about the given plugin. See the `Plugin Manager` section of the `plugins` help topic
133    for more information.
134
135         default value: `https://github.com/micro-editor/plugin-channel`
136
137 * `pluginrepos`: contains all the 'repositories' micro's plugin manager will search for
138    plugins in. A repository consists of a `repo.json` file which contains metadata for a
139    single plugin.
140
141         default value: ` `
142
143 * `useprimary` (only useful on Linux): defines whether or not micro will use the primary clipboard to copy selections
144    in the background. This does not affect the normal clipboard using Ctrl-C and Ctrl-V.
145
146         default value: `on`
147
148 * `keepautoindent`: when using autoindent, whitespace is added for you. This option determines if
149    when you move to the next line without any insertions the whitespace that was added should be deleted.
150    By default the autoindent whitespace is deleted if the line was left empty.
151
152     default value: `off`
153
154 * `termtitle`: defines whether or not your terminal's title will be set by micro when opened.
155
156     default value: `off`
157
158 ---
159
160 Default plugin options:
161
162 * `autoclose`: Automatically close `{}` `()` `[]` `""` `''`. Provided by the `autoclose` plugin
163
164         default value: `on`
165
166 * `linter`: Automatically lint when the file is saved. Provided by the `linter` plugin
167
168         default value: `on`
169
170 * `ftoptions`: by default, micro will set some options based on the filetype. At the moment, micro will
171    use tabs for makefiles and spaces for python files regardless of your settings. If you would like to
172    disable this behavior turn this option off.
173
174         default value: `on`
175
176 Any option you set in the editor will be saved to the file 
177 ~/.config/micro/settings.json so, in effect, your configuration file will be 
178 created for you. If you'd like to take your configuration with you to another
179 machine, simply copy the settings.json to the other machine.
180
181 # Global and local settings
182
183 You can set these settings either globally or locally. Locally means that the setting
184 won't be saved to `~/.config/micro/settings.json` and that it will only be set in
185 the current buffer. Setting an option globally is the default, and will set the option
186 in all buffers.
187
188 The `colorscheme` option is global only, and the `filetype` option is local only. To
189 set an option locally, use `setlocal` instead of `set`.
190
191 In the `settings.json` file you can also put set options locally by specifying a glob.
192 Here is an example which has `tabstospaces` on for all files except Go files, and
193 `tabsize` 4 for all files except Ruby files:
194
195 ```json
196 {
197     "*.go": {
198         "tabstospaces": false
199     },
200     "*.rb": {
201         "tabsize": 2
202     },
203     "tabstospaces": true,
204     "tabsize": 4
205 }
206 ```
207
208 As you can see it is quite easy to set options locally using the `settings.json` file.