chg: Switch to ruff for python lsp

This commit is contained in:
Sayantan Santra 2025-03-19 18:33:37 -05:00
parent 69d3e7d994
commit cf34340f3c
Signed by: SinTan1729
GPG key ID: 0538DD402EA50898

View file

@ -1,12 +1,10 @@
local lspconfig = require('lspconfig')
local map = vim.keymap.set
lspconfig.pyright.setup({
settings = {
python = {
analysis = {
typeCheckingMode = "off"
}
lspconfig.ruff.setup({
init_options = {
settings = {
lineLength = 100,
}
}
})