vim to neovim

This commit is contained in:
2024-08-23 11:20:30 +02:00
parent 64e3e458bc
commit 3808dc2b23
26 changed files with 430 additions and 30 deletions

View File

@ -0,0 +1,18 @@
snippet base "Cmake Init" b
cmake_minimum_required(VERSION ${1:3.12})
project(${2:${VISUAL:project}})
# Generate compile_commands.json
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# Dependencies
# find_package(package 0.0.1 REQUIRED)
# Project configurations
add_executable(${PROJECT_NAME})
add_subdirectory(src)
# target_link_libraries(${PROJECT_NAME} package)
endsnippet