Mercurial > vim
diff plugins/ale.vim @ 11:eeda6b1401ae
changing files to .vim
| author | luka |
|---|---|
| date | Fri, 28 Nov 2025 08:45:17 -0500 |
| parents | plugins/ale@1a705d7a7521 |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/ale.vim Fri Nov 28 08:45:17 2025 -0500 @@ -0,0 +1,19 @@ +" LSP client +Plug 'dense-analysis/ale' + +let g:ale_php_langserver_executable = expand('~/.config/composer/vendor/phpactor/language-server/bin/serve.php') + +let g:ale_linters = { +\ 'php': ['phpcs', 'phpstan', 'psalm', 'ctags'], +\} + +let g:ale_php_ctags_executable = 'ctags' + +" Enable completion where available. +" This setting must be set before ALE is loaded. +" +" You should not turn this setting on if you wish to use ALE as a completion +" source for other completion plugins, like Deoplete. +let g:ale_completion_enabled = 0 +let g:ale_sign_column_always = 1 +let g:ale_lint_delay = 500
