fix(pick): move some leftovers from editor.lua to editor.telescope (#3620)

## What is this PR for?

`have_make` and `have_cmake` were left over at
`/lua/plugins/editor.lua`, so move them to `extras.editor.telescope`
instead.

## Does this PR fix an existing issue?

No

## Checklist

- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md)
guidelines.
This commit is contained in:
Iordanis Petkakis
2024-06-13 14:54:58 +03:00
committed by GitHub
parent e948435f17
commit b9f726404f
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,3 @@
local have_make = vim.fn.executable("make") == 1
local have_cmake = vim.fn.executable("cmake") == 1
return {
-- file explorer

View File

@ -1,3 +1,6 @@
local have_make = vim.fn.executable("make") == 1
local have_cmake = vim.fn.executable("cmake") == 1
---@type LazyPicker
local picker = {
name = "telescope",