File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -20,3 +20,4 @@ This plugin pack does the following:
2020- Adds ` laravel.nvim ` for laravel specific tools
2121- Adds ` laravel-ide-helper.nvim ` for laravel model info
2222- Adds ` blade-nav.nvim ` for cmp and gf for views/routes/configs and more
23+ - Adds ` pint ` for formatting
Original file line number Diff line number Diff line change @@ -71,4 +71,27 @@ return {
7171 },
7272 ft = { " blade" , " php" },
7373 },
74+ {
75+ " WhoIsSethDaniel/mason-tool-installer.nvim" ,
76+ optional = true ,
77+ opts = function (_ , opts )
78+ opts .ensure_installed = require (" astrocore" ).list_insert_unique (opts .ensure_installed , { " pint" })
79+ end ,
80+ },
81+ {
82+ " jay-babu/mason-null-ls.nvim" ,
83+ optional = true ,
84+ opts = function (_ , opts )
85+ opts .ensure_installed = require (" astrocore" ).list_insert_unique (opts .ensure_installed , { " pint" })
86+ end ,
87+ },
88+ {
89+ " stevearc/conform.nvim" ,
90+ optional = true ,
91+ opts = {
92+ formatters_by_ft = {
93+ php = { " pint" },
94+ },
95+ },
96+ },
7497}
You can’t perform that action at this time.
0 commit comments