diff options
-rw-r--r-- | after/plugin/mini.lua | 5 | ||||
-rw-r--r-- | lua/user/lazy.lua | 2 |
2 files changed, 1 insertions, 6 deletions
diff --git a/after/plugin/mini.lua b/after/plugin/mini.lua index 8bd6531..a347f4c 100644 --- a/after/plugin/mini.lua +++ b/after/plugin/mini.lua @@ -1,12 +1,7 @@ --- mini.nvim statusline module require("mini.statusline").setup({ set_vim_settings = false, }) --- mini.nvim commeting module -require("mini.comment").setup({}) - --- mini.nvim surround module require("mini.surround").setup({ silent = true }) diff --git a/lua/user/lazy.lua b/lua/user/lazy.lua index dfb8364..640e10f 100644 --- a/lua/user/lazy.lua +++ b/lua/user/lazy.lua @@ -143,6 +143,6 @@ require("lazy").setup({ install = { colorscheme = { "nord" }, }, - checker = { enabled = true }, + checker = { enabled = false }, -- defaults = {lazy = true}, }) |