fix(lang.clojure): correct cmp-conjure source name (#6208)

## Description


8c9a88efed/README.md (L10)

## Related Issue(s)

<!--
  If this PR fixes any issues, please link to the issue here.
  - Fixes #<issue_number>
-->

## Screenshots

<!-- Add screenshots of the changes if applicable. -->

## Checklist

- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md)
guidelines.
This commit is contained in:
Frestein ☁️
2025-09-20 17:08:56 +05:00
committed by GitHub
parent 9c611b0c57
commit 55b5c1fecb

View File

@@ -21,7 +21,7 @@ return {
},
opts = function(_, opts)
if type(opts.sources) == "table" then
vim.list_extend(opts.sources, { name = "clojure" })
vim.list_extend(opts.sources, { name = "conjure" })
end
end,
},