16 lines
414 B
Lua
16 lines
414 B
Lua
return { 'ej-shafran/compile-mode.nvim',
|
|
version = '^5.13.0',
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim', lazy = true,
|
|
'm00qek/baleia.nvim',
|
|
},
|
|
config = function()
|
|
---@type CompileModeOpts
|
|
vim.g.compile_mode = {
|
|
default_command = 'cmake --build build',
|
|
input_word_completion = true,
|
|
baleia_setup = true,
|
|
bang_expansion = true,
|
|
}
|
|
end,
|
|
}
|