Modernizied structure of configure files
This commit is contained in:
parent
515972d957
commit
6f55a66333
12 changed files with 264 additions and 254 deletions
16
lua/plugins/compile-mode.lua
Normal file
16
lua/plugins/compile-mode.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue