Skip to content

Commit b27f917

Browse files
committed
chore(lsp): complete function brackets in tyserver
1 parent f6d0ebb commit b27f917

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

lua/plugins/mini_nvim.lua

+4-6
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,10 @@ M.clue = {
110110
}
111111

112112
M.notify = {
113-
window = {
114-
winblend = 0,
115-
116-
},
117-
118-
}
113+
window = {
114+
winblend = 0,
115+
},
116+
}
119117

120118
M.git = {}
121119

lua/plugins/servers.lua

+5
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ lspconfig.ts_ls.setup {
4646
hostInfo = "neovim",
4747
},
4848
single_file_support = true,
49+
settings = {
50+
completions = {
51+
completeFunctionCalls = true,
52+
},
53+
},
4954
}
5055

5156
lspconfig.gleam.setup {}

0 commit comments

Comments
 (0)