YouCompleteMe
In Editor Configuration: Supported
Code Action On Save: Unsupported
- Install YouCompleteMe
- Install zig.vim
- Add these lines to your
.vimrc
:
let g:ycm_language_server =
\\ [
\\ {
\\ 'name': 'zls',
\\ 'filetypes': [ 'zig' ],
\\ 'cmdline': [ '/path/to/zls_executable' ]
\\ }
\\ ]
To apply in-editor configuration or manually specify the path to zig
, please refer to the YCM LSP Configuration Docs.