Initial nvim config.
This commit is contained in:
parent
e915531d83
commit
c26d67450b
19 changed files with 279 additions and 0 deletions
4
.config/nvim/lua/configs/lsp/bash.lua
Normal file
4
.config/nvim/lua/configs/lsp/bash.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
"bashls",
|
||||
settings = { },
|
||||
}
|
||||
5
.config/nvim/lua/configs/lsp/clangd.lua
Normal file
5
.config/nvim/lua/configs/lsp/clangd.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
"clangd",
|
||||
settings = {}
|
||||
}
|
||||
|
||||
12
.config/nvim/lua/configs/lsp/pylsp.lua
Normal file
12
.config/nvim/lua/configs/lsp/pylsp.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
"pylsp",
|
||||
settings = {
|
||||
["pylsp"] = {
|
||||
plugins = {
|
||||
pylint = {
|
||||
enabled = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue