mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 19:30:01 +02:00
nvim: add sql stuff
This commit is contained in:
parent
f1c92c0ec4
commit
21318127a3
2 changed files with 19 additions and 0 deletions
18
nvim/lua/user/plugins/lang/sql.lua
Normal file
18
nvim/lua/user/plugins/lang/sql.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
local lspservers = {
|
||||
sqlls = {}
|
||||
}
|
||||
|
||||
return {
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
ensure_installed = { "sql" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
servers = lspservers
|
||||
},
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue