Correcting After folder
This commit is contained in:
5
after/ftplugin/cpp.lua
Normal file
5
after/ftplugin/cpp.lua
Normal 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
4
after/ftplugin/php.lua
Normal file
@ -0,0 +1,4 @@
|
||||
vim.keymap.set("n", "<space>pa", function()
|
||||
package.loaded["php.artisan"] = nil
|
||||
require("php.artisan").telescope_select_artisan()
|
||||
end)
|
10
after/plugin/colors.lua
Normal file
10
after/plugin/colors.lua
Normal file
@ -0,0 +1,10 @@
|
||||
function ColorMyPencils(color)
|
||||
color = color or "catppuccin"
|
||||
vim.cmd.colorscheme(color)
|
||||
|
||||
-- make transparent BG
|
||||
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||
end
|
||||
|
||||
ColorMyPencils()
|
Reference in New Issue
Block a user