3 files changed,
4 insertions(+),
3 deletions(-)
jump to
| M | lua/globals.lua |
| M | lua/lsp/providers/sqls.lua |
| M | lua/options.lua |
M
lua/globals.lua
@@ -3,8 +3,8 @@ require("toggleterm.terminal").Terminal:new({ cmd = cmd, hidden = true }):toggle()
end function _G.mkdir() - local dir = vim.fn.expand("%:p:h") + local dir = vim.fn.expand "%:p:h" if vim.fn.isdirectory(dir) == 0 then - vim.fn.mkdir(dir, 'p') + vim.fn.mkdir(dir, "p") end end
M
lua/lsp/providers/sqls.lua
@@ -4,7 +4,7 @@ sqls = {
connections = { { driver = "postgresql", - dataSourceName = "host=0.0.0.0 port=5432 user=postgres password=qwerty123 dbname=postgres sslmode=disable" + dataSourceName = "host=0.0.0.0 port=5432 user=postgres password=qwerty123 dbname=postgres sslmode=disable", }, }, },
M
lua/options.lua
@@ -1,6 +1,7 @@
local o = vim.opt vim.g.mapleader = " " +vim.g.maplocalleader = "," vim.g.netrw_banner = false -- o.laststatus = 0