1
0

Correcting After folder

This commit is contained in:
2024-10-06 19:41:15 +02:00
parent a6c0657d70
commit 9db9a8f594
7 changed files with 44 additions and 38 deletions

5
after/ftplugin/cpp.lua Normal file
View File

@ -0,0 +1,5 @@
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'

4
after/ftplugin/php.lua Normal file
View File

@ -0,0 +1,4 @@
vim.keymap.set("n", "<space>pa", function()
package.loaded["php.artisan"] = nil
require("php.artisan").telescope_select_artisan()
end)