diff options
author | Valentin Popov <valentin@popov.link> | 2023-03-30 22:07:18 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2023-03-30 22:07:18 +0300 |
commit | 731f056e31407e4302741b5b607bc793819defe9 (patch) | |
tree | 5034956c86d836a34d63bcf3e8f84877da539553 /lua | |
parent | 73f11058762404f0c37c312bf42f0a387c6aa041 (diff) | |
download | nvim-config-731f056e31407e4302741b5b607bc793819defe9.tar.xz nvim-config-731f056e31407e4302741b5b607bc793819defe9.zip |
Плагин для проверки синтаксиса
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'lua')
-rw-r--r-- | lua/plugins.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 07e43ba..af108c4 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -47,4 +47,7 @@ return require('packer').startup(function(use) require('nvim-autopairs').setup {} end } + + -- Линтер для файлов + use 'dense-analysis/ale' end) |