Update files
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
return {
|
return {
|
||||||
'ricardoramirezr/blade-nav.nvim',
|
'ricardoramirezr/blade-nav.nvim',
|
||||||
dependencies = {
|
dependencies = { -- totally optional
|
||||||
'saghen/blink.cmp',
|
'saghen/blink.cmp', -- if using blink.cmp
|
||||||
},
|
},
|
||||||
ft = { 'blade', 'php' },
|
ft = { 'blade', 'php' }, -- optional, improves startup time
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ return {
|
|||||||
},
|
},
|
||||||
|
|
||||||
sources = {
|
sources = {
|
||||||
default = { 'lsp', 'path', 'snippets', 'lazydev' },
|
default = { 'lsp', 'path', 'snippets', 'lazydev', 'blade-nav' },
|
||||||
providers = {
|
providers = {
|
||||||
lazydev = { module = 'lazydev.integrations.blink', score_offset = 100 },
|
lazydev = { module = 'lazydev.integrations.blink', score_offset = 100 },
|
||||||
-- avante = { module = 'blink-cmp-avante', name = 'Avante', opts = {} },
|
-- avante = { module = 'blink-cmp-avante', name = 'Avante', opts = {} },
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ return { -- Autoformat
|
|||||||
formatters_by_ft = {
|
formatters_by_ft = {
|
||||||
lua = { 'stylua' },
|
lua = { 'stylua' },
|
||||||
php = { 'pint' },
|
php = { 'pint' },
|
||||||
|
blade = { 'blade-formatter' },
|
||||||
-- Conform can also run multiple formatters sequentially
|
-- Conform can also run multiple formatters sequentially
|
||||||
-- python = { "isort", "black" },
|
-- python = { "isort", "black" },
|
||||||
--
|
--
|
||||||
|
|||||||
@@ -206,6 +206,7 @@ return {
|
|||||||
local ensure_installed = vim.tbl_keys(servers or {})
|
local ensure_installed = vim.tbl_keys(servers or {})
|
||||||
vim.list_extend(ensure_installed, {
|
vim.list_extend(ensure_installed, {
|
||||||
'stylua', -- Used to format Lua code
|
'stylua', -- Used to format Lua code
|
||||||
|
'blade-formatter',
|
||||||
})
|
})
|
||||||
|
|
||||||
-- LSP servers and clients are able to communicate to each other what features they support.
|
-- LSP servers and clients are able to communicate to each other what features they support.
|
||||||
|
|||||||
Reference in New Issue
Block a user