Skip to content

Commit 99cd785

Browse files
committed
feat(sql): add PostgreSQL support to the SQL pack
1 parent 711efc3 commit 99cd785

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

lua/astrocommunity/pack/full-dadbod/init.lua

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ return {
4444
},
4545
},
4646
},
47-
filetypes = {
48-
extension = { pg = "sql" },
49-
},
5047
},
5148
},
5249
},

lua/astrocommunity/pack/sql/init.lua

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
return {
2+
{
3+
"AstroNvim/astrocore",
4+
opts = {
5+
filetypes = {
6+
extension = {
7+
pg = "sql",
8+
},
9+
},
10+
},
11+
},
212
{
313
"nvim-treesitter/nvim-treesitter",
414
optional = true,

0 commit comments

Comments
 (0)