getting rid of tabs, adding nullls for sql, and adding telescope preview back in

This commit is contained in:
Arjun Patel
2023-05-25 10:57:47 -07:00
parent 591fdce55e
commit eb1bcd026c
5 changed files with 14 additions and 28 deletions
+8 -2
View File
@@ -1,6 +1,12 @@
local null_ls = require("null-ls")
null_ls.setup({
sources = {
},
sources = {
-- sql lint
null_ls.builtins.diagnostics.sqlfluff.with({
extra_args = { "--dialect", "postgres" }, -- change to your dialect
}),
-- postgres format
null_ls.builtins.formatting.pg_format
},
})