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

17 lines
417 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,
}