https://github.com/jyane/j2
Private use
https://github.com/jyane/j2
Last synced: about 1 month ago
JSON representation
Private use
- Host: GitHub
- URL: https://github.com/jyane/j2
- Owner: jyane
- Created: 2022-04-20T14:23:03.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-20T14:32:12.000Z (about 3 years ago)
- Last Synced: 2025-01-25T21:56:03.842Z (3 months ago)
- Language: Starlark
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# j2
Private use## Editor integration with bazel
Please refer this [doc](https://github.com/bazelbuild/rules_go/wiki/Editor-and-tool-integration)Example for neovim:
``` lua
nvim_lsp.gopls.setup {
on_attach = on_attach,
settings = {
gopls = {
env = {
GOPACKAGESDRIVER = './tools/gopackagesdriver.sh'
},
directoryFilters = {
"-bazel-bin",
"-bazel-out",
"-bazel-testlogs",
"-bazel-j2",
},
},
},
}
```