nvim-dot-file/lua/plugins/compile-mode.lua
2026-05-02 17:17:04 +02:00

16 lines
413 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,
}