diff options
| author | christianchiarulli <[email protected]> | 2021-07-16 18:36:43 -0400 | 
|---|---|---|
| committer | christianchiarulli <[email protected]> | 2021-07-16 18:36:43 -0400 | 
| commit | cabc218c64dd402ebf07f347d52174dda7a3dc40 (patch) | |
| tree | c27d91db7ae1c8bdd13bdafe8338485a3ac021e3 /lua | |
| parent | 30a9becf6daab1a934025951cd66f4fd7f2dec8f (diff) | |
this may break things if not specified like this
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/plugins.lua | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/lua/plugins.lua b/lua/plugins.lua index 0059f342..2f1ad333 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -89,7 +89,9 @@ return require("packer").startup(function(use)    -- Linter    use {      "mfussenegger/nvim-lint", -    config = require("core.linter").setup, +    config = function() +      require("core.linter").setup() +    end,    }    -- NvimTree | 
