1
0
neovim_config/after/ftplugin/cpp.lua

6 lines
210 B
Lua
Raw Normal View History

2024-10-06 17:41:15 +00:00
local tab_spacing = 2
vim.opt.tabstop = tab_spacing
vim.opt.softtabstop = tab_spacing
vim.opt.shiftwidth = tab_spacing
vim.opt_local.makeprg = 'msbuild .\\game.vcxproj /p:Configuration=Release /p:Platform=x64'