Skip to content

Commit eaff46b

Browse files
committed
fix(config)!: inverted default value for telescope in setup()
Signed-off-by: Guennadi Maximov C <g.maxc.fox@protonmail.com>
1 parent c476bba commit eaff46b

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,10 +372,10 @@ require('project').setup()
372372
---
373373
---Note that even if set to `false`, you can still load the extension manually.
374374
--- ---
375-
---Default: `true`
375+
---Default: `false`
376376
--- ---
377377
---@type boolean
378-
enabled = true,
378+
enabled = false,
379379

380380
---Determines whether the newest projects come first in the
381381
---telescope picker (`'newest'`), or the oldest (`'oldest'`).

doc/project-nvim.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ Table of Contents *project-nvim.toc*
373373
Note that even if set to `false`,
374374
you can still load the extension manually
375375

376-
Default: `true` ~
376+
Default: `false` ~
377377

378378

379379
* {sort} (`'newest'|'oldest'`)

lua/project/config/defaults.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,10 @@ local telescope = {}
144144
---
145145
---Note that even if set to `false`, you can still load the extension manually.
146146
--- ---
147-
---Default: `true`
147+
---Default: `false`
148148
--- ---
149149
---@type boolean
150-
telescope.enabled = true
150+
telescope.enabled = false
151151

152152
---Determines whether the newest projects come first in the
153153
---telescope picker (`'newest'`), or the oldest (`'oldest'`).

0 commit comments

Comments
 (0)