From 8de574df32f1cb42c76c1ec99364cde131c64470 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Mon, 9 Jan 2023 23:16:02 +0100 Subject: [PATCH] added cmake tools --- lua/plugins/cmake-tools.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lua/plugins/cmake-tools.lua diff --git a/lua/plugins/cmake-tools.lua b/lua/plugins/cmake-tools.lua new file mode 100644 index 0000000..649251a --- /dev/null +++ b/lua/plugins/cmake-tools.lua @@ -0,0 +1,9 @@ +return { + 'Civitasv/cmake-tools.nvim', + config = { + cmake_command = "cmake", + cmake_generate_options = { "-D", "CMAKE_EXPORT_COMPILE_COMMANDS=1", '-G', 'Ninja' }, + cmake_show_console = "always", + cmake_build_directory = "build_nvim", + } +}