Initial commit based on NvChad v2.0

This commit is contained in:
2024-03-02 01:01:31 +01:00
commit 465ae1422c
5 changed files with 129 additions and 0 deletions

13
configs/lspconfig.lua Normal file
View File

@@ -0,0 +1,13 @@
local lspconfig = require("lspconfig")
lspconfig.pylsp.setup{
settings = {
pylsp = {
plugins = {
pycodestyle = {
maxLineLength = 79
}
}
}
}
}