diff --git a/conf/nvim/lua/plugins-options.lua b/conf/nvim/lua/plugins-options.lua index 637773a..6161fb3 100644 --- a/conf/nvim/lua/plugins-options.lua +++ b/conf/nvim/lua/plugins-options.lua @@ -10,3 +10,4 @@ require('plugins.lsp') require('plugins.cmp') require('plugins.gitsigns') require('plugins.lualine') +require('plugins.nvimlint') diff --git a/conf/nvim/lua/plugins.lua b/conf/nvim/lua/plugins.lua index a5c483b..9089c79 100644 --- a/conf/nvim/lua/plugins.lua +++ b/conf/nvim/lua/plugins.lua @@ -23,5 +23,8 @@ require "paq" { -- autocompletion plugin 'hrsh7th/nvim-cmp'; - 'hrsh7th/cmp-nvim-lsp' + 'hrsh7th/cmp-nvim-lsp'; + + -- vim lint when it is not possible withlsp + 'mfussenegger/nvim-lint'; }