1
0
Fork 0

Initial nvim config.

This commit is contained in:
Arthur Khachaturov 2023-11-28 23:54:18 +03:00
parent e915531d83
commit c26d67450b
19 changed files with 279 additions and 0 deletions

View file

@ -0,0 +1,4 @@
return {
"bashls",
settings = { },
}

View file

@ -0,0 +1,5 @@
return {
"clangd",
settings = {}
}

View file

@ -0,0 +1,12 @@
return {
"pylsp",
settings = {
["pylsp"] = {
plugins = {
pylint = {
enabled = true,
},
},
},
},
}