mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 01:31:03 +00:00
root: add .helix to .gitignore
[helix] can use project specific configuration in the `.helix` directory under the project root. For GStreamer development, this can be used to: * point the lsp (clangd) to the folder where `compile_commands.json` is generated, * avoid automatic header insertion, * define gst-indent as the formatter (from the gstreamer/scripts dir). .helix/languages.toml: ```toml [language-server.clangd] args = [ "--compile-commands-dir=builddir", "--header-insertion=never", ] [[language]] name = "c" auto-format = true formatter = { command = "gst-indent", args = ["-st"] } ``` [helix]: https://helix-editor.com/ Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7612>
This commit is contained in:
parent
067fe7b9bc
commit
29063d2ebc
1 changed files with 1 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,6 +6,7 @@ prefix/
|
||||||
.gdbinit
|
.gdbinit
|
||||||
|
|
||||||
# Editor/IDE spcific
|
# Editor/IDE spcific
|
||||||
|
.helix/
|
||||||
.vscode/
|
.vscode/
|
||||||
.vscode-server/
|
.vscode-server/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue