12 lines
579 B
Lua
12 lines
579 B
Lua
local opt = vim.opt -- to set options
|
|
local utils = require('utils')
|
|
-- require('telescope').load_extension('cmake')
|
|
require('cmake').setup({
|
|
parameters_file = 'neovim.json', -- JSON file to store information about selected target, run arguments and build type.
|
|
build_dir = '{cwd}/build_nvim', -- Build directory. The expressions `{cwd}`, `{os}` and `{build_type}` will be expanded with the corresponding text values.
|
|
})
|
|
-- msbuild errorformat
|
|
opt.errorformat:append('\\ %#%f(%l\\\\\\,%c):\\ %m')
|
|
-- cl.exe errorformat
|
|
-- o.errorformat:append('\ %#%f(%l) : %#%t%[A-z]%# %m')
|