Merge pull request #3556 from jD91mZM2/rnix

Add rnix-lsp for Nix diagnostics and completion
This commit is contained in:
Horacio Sanson
2021-01-23 21:50:36 +09:00
committed by GitHub
5 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
" Author: jD91mZM2 <me@krake.one>
" Description: rnix-lsp language client
function! ale_linters#nix#rnix_lsp#GetProjectRoot(buffer) abort
" rnix-lsp does not yet use the project root, so getting it right is not
" important
return fnamemodify(a:buffer, ':h')
endfunction
call ale#linter#Define('nix', {
\ 'name': 'rnix_lsp',
\ 'lsp': 'stdio',
\ 'executable': 'rnix-lsp',
\ 'command': '%e',
\ 'project_root': function('ale_linters#nix#rnix_lsp#GetProjectRoot'),
\})