You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'mfussenegger/nvim-dap' -- optional only for debugger
6
+
},
7
+
config=function()
8
+
localPath=require('plenary.path')
9
+
require('tasks').setup({
10
+
default_params= { -- Default module parameters with which `neovim.json` will be created.
11
+
cmake= {
12
+
cmd='cmake', -- CMake executable to use, can be changed using `:Task set_module_param cmake cmd`.
13
+
-- build_dir = tostring(Path:new('{cwd}', 'build', '{os}-{build_type}')), -- Build directory. The expressions `{cwd}`, `{os}` and `{build_type}` will be expanded with the corresponding text values. Could be a function that return the path to the build directory.
14
+
build_dir=tostring(Path:new('{cwd}', 'build')), -- Build directory. The expressions `{cwd}`, `{os}` and `{build_type}` will be expanded with the corresponding text values. Could be a function that return the path to the build directory.
15
+
build_type='RelWithDebInfo', -- Build type, can be changed using `:Task set_module_param cmake build_type`.
16
+
dap_name='lldb', -- DAP configuration name from `require('dap').configurations`. If there is no such configuration, a new one with this name as `type` will be created.
0 commit comments