/nvim-telemake

nvim extension with nvim-telescope to select and run any Makefile target

Primary LanguageLuaMIT LicenseMIT

nvim-telemake

An nvim extension which uses telescope to show select and execute Makefile targets.

Installation

Using packer.nvim

use 'nvim-telescope/telescope.nvim'
use 'ChSotiriou/nvim-telemake'

Configure telescope to load the extension in the nvim config file:

require("telescope").load_extension("telemake")
-- Add it as a key map (<leader>fm)
vim.api.nvim_set_keymap('n', '<leader>fm', '<cmd>Telescope telemake<cr>', { noremap = true, silent = true })