-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCodeFormatter.sublime-settings
21 lines (16 loc) · 1 KB
/
CodeFormatter.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"enabled": true,
// Set the specific environment variables here (Comma separated list of paths)
// e.g GOPATH": ["/usr/go/gocode/src/example/", "/usr/tmp/gosrc/src/"]
// or GOPATH": ["C:/go/gocode/src/example/", "/usr/tmp/gosrc/src/"]
"GOPATH": ["/home/non-descript-intern/GoWorkspace/","/home/non-descript-intern/.config/sublime-text-2/Packages/ProtoBufCodeFormatter/"],
// Set the path to where the go binary is installed (Comma separated list of paths)
// All paths are checked, a Error will be displayed if the binary is not found
// e.g "GOBIN": ["/usr/go/bin/"]
// or "GOBIN": ["C:/Go/bin/"]
"GOBIN": ["C:/GoWorkspace/bin", "~/bin", "~/GoWorkspace/bin", "/usr/local/go/bin", "/usr/local/opt/go/bin,", "/usr/local/bin", "/usr/bin"],
// Set path to where protocol buffer files may reside (Comma seperated list of paths)
"PROTOPATH": ["/home/non-descript-intern/GoWorkspace/src/github.com/DirkBrand/protobuf-code-formatter/protoc-gen-pretty/"],
// Location of protoc binary
"PATH": ["/usr/local/bin/"]
}