Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lua/astrocommunity/pack/laravel/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ return {
{ import = "astrocommunity.pack.blade" },
{
"adalessa/laravel.nvim",
cond = function()
return vim.loop.fs_stat(vim.fn.getcwd() .. "/artisan") ~= nil
end,
Comment thread
angelogambaradev marked this conversation as resolved.
Outdated
cmd = { "Sail", "Artisan", "Composer", "Npm", "Yarn", "Laravel" },
dependencies = {
"tpope/vim-dotenv",
Expand Down Expand Up @@ -42,6 +45,9 @@ return {
},
{
"Bleksak/laravel-ide-helper.nvim",
cond = function()
return vim.loop.fs_stat(vim.fn.getcwd() .. "/artisan") ~= nil
end,
Comment thread
angelogambaradev marked this conversation as resolved.
Outdated
dependencies = {
{
"AstroNvim/astrocore",
Expand Down
Loading