Compare commits

..

3 Commits

Author SHA1 Message Date
9a6b0f8928 chore(main): release 10.7.1 ()
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-10-25 17:52:35 +02:00
f589154268 fix(catppuccin): trouble integration. Fixes 2023-10-25 17:23:37 +02:00
60e5707013 fix(util): pcall deletion of lazy_file augroup. See 2023-10-25 15:54:35 +02:00
4 changed files with 10 additions and 3 deletions

@ -1,5 +1,13 @@
# Changelog
## [10.7.1](https://github.com/LazyVim/LazyVim/compare/v10.7.0...v10.7.1) (2023-10-25)
### Bug Fixes
* **catppuccin:** trouble integration. Fixes [#1872](https://github.com/LazyVim/LazyVim/issues/1872) ([f589154](https://github.com/LazyVim/LazyVim/commit/f589154268dfcb3e8f91075791a0a618c97fe59d))
* **util:** pcall deletion of lazy_file augroup. See [#1863](https://github.com/LazyVim/LazyVim/issues/1863) ([60e5707](https://github.com/LazyVim/LazyVim/commit/60e57070131f4c544e17541610415d4d51769d62))
## [10.7.0](https://github.com/LazyVim/LazyVim/compare/v10.6.0...v10.7.0) (2023-10-25)

@ -3,7 +3,7 @@ local Util = require("lazyvim.util")
---@class LazyVimConfig: LazyVimOptions
local M = {}
M.version = "10.7.0" -- x-release-please-version
M.version = "10.7.1" -- x-release-please-version
---@class LazyVimOptions
local defaults = {

@ -21,7 +21,6 @@ return {
illuminate = true,
indent_blankline = { enabled = true },
lsp_trouble = true,
trouble = true,
mason = true,
mini = true,
native_lsp = {

@ -80,7 +80,7 @@ function M.lazy_file()
if #events == 0 then
return
end
vim.api.nvim_del_augroup_by_name("lazy_file")
pcall(vim.api.nvim_del_augroup_by_name, "lazy_file")
---@type table<string,string[]>
local skips = {}