Skip to content

Commit

Permalink
hide null-ls
Browse files Browse the repository at this point in the history
  • Loading branch information
zztrieuzz committed Jan 6, 2024
1 parent 53b4c92 commit 69066fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/windline/components/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ end

local function is_lsp(bufnr, opt)
opt = opt or {}
local hide_server_names = opt.hide_server_names or { 'copilot' }
local hide_server_names = opt.hide_server_names or { 'copilot', 'null-ls' }
local clients = {}
for _, client in pairs(get_lsp_client(bufnr)) do
if not utils.is_in_table(hide_server_names, client.name) then
Expand Down

0 comments on commit 69066fe

Please sign in to comment.