1
0
Fork 0

sanoethusatoheu

This commit is contained in:
Luca Bilke 2023-02-04 16:15:23 +01:00
parent 2acf72688b
commit 0c83807bc1
2 changed files with 4 additions and 7 deletions

View file

@ -107,7 +107,10 @@ ins_left {
for _, client in ipairs(clients) do
local filetypes = client.config.filetypes
if filetypes and vim.fn.index(filetypes, buf_ft) ~= -1 then
return client.name
if client.name ~= "null-ls" then
return client.name
end
msg = client.name
end
end
return msg

View file

@ -161,8 +161,6 @@ local plugins = {
require('plugins.config.dap')
end,
},
{ "olical/aniseed" },
{ "olical/conjure" },
{ "rafamadriz/friendly-snippets",
event = "InsertEnter",
module = { "cmp", "cmp_nvim_lsp" },
@ -184,10 +182,6 @@ local plugins = {
{ "hrsh7th/cmp-nvim-lsp", after = "cmp-nvim-lua" },
{ "hrsh7th/cmp-buffer", after = "cmp-nvim-lsp" },
{ "hrsh7th/cmp-path", after = "cmp-buffer" },
{ "paterjason/cmp-conjure",
after = { "cmp-buffer", "conjure" },
ft = "fennel"
},
{ "onsails/lspkind.nvim" },
{ "windwp/nvim-autopairs",
after = "nvim-cmp",