diff options
author | Luc Sinet <[email protected]> | 2021-07-17 00:30:38 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-16 18:30:38 -0400 |
commit | 836286798e959fbaa43bd4502561cf85aea537c9 (patch) | |
tree | 821f5c459fb056c619aab9f34d802be8776a1cac /lua/plugins.lua | |
parent | fe48ed9ef9de8da8b9fbf7f82f8e0af1758581a4 (diff) |
[Feature] add linter support (#982)
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 0aa29d17..0059f342 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -86,6 +86,12 @@ return require("packer").startup(function(use) end, } + -- Linter + use { + "mfussenegger/nvim-lint", + config = require("core.linter").setup, + } + -- NvimTree use { "kyazdani42/nvim-tree.lua", |