Update files

This commit is contained in:
2026-06-16 22:03:42 +01:00
parent ecbc266165
commit fff9a0e70e
4 changed files with 6 additions and 4 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
return {
'ricardoramirezr/blade-nav.nvim',
dependencies = {
'saghen/blink.cmp',
dependencies = { -- totally optional
'saghen/blink.cmp', -- if using blink.cmp
},
ft = { 'blade', 'php' },
ft = { 'blade', 'php' }, -- optional, improves startup time
}
+1 -1
View File
@@ -52,7 +52,7 @@ return {
},
sources = {
default = { 'lsp', 'path', 'snippets', 'lazydev' },
default = { 'lsp', 'path', 'snippets', 'lazydev', 'blade-nav' },
providers = {
lazydev = { module = 'lazydev.integrations.blink', score_offset = 100 },
-- avante = { module = 'blink-cmp-avante', name = 'Avante', opts = {} },
+1
View File
@@ -32,6 +32,7 @@ return { -- Autoformat
formatters_by_ft = {
lua = { 'stylua' },
php = { 'pint' },
blade = { 'blade-formatter' },
-- Conform can also run multiple formatters sequentially
-- python = { "isort", "black" },
--
+1
View File
@@ -206,6 +206,7 @@ return {
local ensure_installed = vim.tbl_keys(servers or {})
vim.list_extend(ensure_installed, {
'stylua', -- Used to format Lua code
'blade-formatter',
})
-- LSP servers and clients are able to communicate to each other what features they support.