From c1bebc9df1c55ff472d9e373656837db9f094e1c Mon Sep 17 00:00:00 2001 From: tomoron Date: Mon, 9 Feb 2026 23:25:08 +0100 Subject: [PATCH] ignore line too long on python lsp --- homeConfigs/modules/vim.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/homeConfigs/modules/vim.nix b/homeConfigs/modules/vim.nix index c202569..cabf92c 100644 --- a/homeConfigs/modules/vim.nix +++ b/homeConfigs/modules/vim.nix @@ -45,7 +45,15 @@ vim.lsp.enable('glsl_analyzer') vim.lsp.config('pylsp', coq.lsp_ensure_capabilities({ - cmd = {"pylsp", "-vvv", "--log-file", "/tmp/lsp.log"} + settings = { + pylsp = { + plugins = { + pycodestyle = { + ignore = {'E501'}, + } + } + } + } })) vim.lsp.enable('pylsp')