-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPretty Shell.sublime-settings
More file actions
45 lines (32 loc) · 944 Bytes
/
Pretty Shell.sublime-settings
File metadata and controls
45 lines (32 loc) · 944 Bytes
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
{
// Binary path.
"shfmt_bin_path": "shfmt",
// Run format command on save.
"format_on_save": true,
// Enable inline error popup.
"show_error_inline": true,
// Scroll to the syntax error point.
"scroll_to_error_point": true,
//
// shfmt options
// * Leave intact to use its default behavior.
//
// Simplify the code
"simplify": false,
// Minify the code (implies "simplify")
"minify": false,
// bash/posix/mksh/bats (default: bash)
"language": "",
// 0 for tabs (default), >0 for number of spaces
"indent": "",
// Operators such as '&&' and '|' may start a line
"binop": false,
// Indent switch cases
"switchcase": false,
// Redirect operators will be followed by a space
"rediop": false,
// Keep column alignment paddings
"align": false,
// Place function opening braces on a separate line
"fnbrace": false
}