nvim: use make instead of cmake for telescope-extension

cmake didn't work in termux 🤷
This commit is contained in:
tastytea 2022-09-01 03:20:00 +02:00
parent 4e58c35782
commit 3709404c1e
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM

View File

@ -92,9 +92,7 @@ require('packer').startup({ function(use)
}
use {
'https://github.com/nvim-telescope/telescope-fzf-native.nvim',
run = [[cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && \
cmake --build build --config Release && \
cmake --install build --prefix build]]
run = [[make]]
}
use {
'https://github.com/kyazdani42/nvim-tree.lua',