Merge branch 'LazyVim:main' into main

This commit is contained in:
暮晨 2023-10-18 09:11:32 -05:00 committed by GitHub
commit 9d9bac4733
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 3 deletions

View file

@ -1,5 +1,12 @@
# Changelog # Changelog
## [10.4.4](https://github.com/LazyVim/LazyVim/compare/v10.4.3...v10.4.4) (2023-10-18)
### Bug Fixes
* **project:** don't let `project.nvim` change the cwd. Leads to too much confusion ([7d8b3e8](https://github.com/LazyVim/LazyVim/commit/7d8b3e8ef96f91f96c8e3a0ba62dfab270debf9f))
## [10.4.3](https://github.com/LazyVim/LazyVim/compare/v10.4.2...v10.4.3) (2023-10-17) ## [10.4.3](https://github.com/LazyVim/LazyVim/compare/v10.4.2...v10.4.3) (2023-10-17)

View file

@ -1,4 +1,4 @@
*LazyVim.txt* For Neovim >= 0.9.0 Last change: 2023 October 17 *LazyVim.txt* For Neovim >= 0.9.0 Last change: 2023 October 18
============================================================================== ==============================================================================
Table of Contents *LazyVim-table-of-contents* Table of Contents *LazyVim-table-of-contents*

View file

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

View file

@ -5,7 +5,9 @@ return {
-- project management -- project management
{ {
"ahmedkhalf/project.nvim", "ahmedkhalf/project.nvim",
opts = {}, opts = {
manual_mode = true,
},
event = "VeryLazy", event = "VeryLazy",
config = function(_, opts) config = function(_, opts)
require("project_nvim").setup(opts) require("project_nvim").setup(opts)