Skip to content

Commit

Permalink
Merge branch 'dev' into refac/php-intelephense-maxfile-size
Browse files Browse the repository at this point in the history
  • Loading branch information
n3wborn authored Sep 11, 2024
2 parents 7d1926b + 7bd480b commit 410a8dd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion after/ftplugin/php.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local config = {
root_dir = vim.fs.dirname(vim.fs.find({ '.git', 'composer.json' }, { upward = true })[1]),
settings = {
files = {
maxSize = 10000000, -- 10Mo
maxSize = 10000000, -- 10M
},
-- See https://github.com/bmewburn/intelephense-docs
},
Expand Down
21 changes: 13 additions & 8 deletions lua/plugins/mason.lua
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
return {
'williamboman/mason.nvim',
cmd = {
'Mason',
'MasonUpdate',
'MasonInstall',
'MasonUninstall',
'MasonUninstallAll',
'MasonLog',
{
'williamboman/mason.nvim',
cmd = {
'Mason',
'MasonUpdate',
'MasonInstall',
'MasonUninstall',
'MasonUninstallAll',
'MasonLog',
},
config = function()
require('mason').setup()
end,
},
{
'williamboman/mason-lspconfig.nvim',
Expand Down

0 comments on commit 410a8dd

Please sign in to comment.