diff plugins/ale @ 4:1a705d7a7521

working on stuff
author luka
date Thu, 23 Oct 2025 12:33:51 -0400
parents a4ec03f77554
children
line wrap: on
line diff
--- a/plugins/ale	Thu Apr 24 20:28:09 2025 -0400
+++ b/plugins/ale	Thu Oct 23 12:33:51 2025 -0400
@@ -3,11 +3,17 @@
 
 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 = 1
+let g:ale_completion_enabled = 0
 let g:ale_sign_column_always = 1
 let g:ale_lint_delay = 500