Compare commits
No commits in common. "d3f94a6761ffd6df9467a0b772f16d2ac95c6bd1" and "0686ad92c81b4b5a3a21bbed7fa1be886c205ed3" have entirely different histories.
d3f94a6761
...
0686ad92c8
3 changed files with 2 additions and 7 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -70,6 +70,3 @@
|
||||||
[submodule "pack/general/start/vim-caddyfile"]
|
[submodule "pack/general/start/vim-caddyfile"]
|
||||||
path = pack/general/start/vim-caddyfile
|
path = pack/general/start/vim-caddyfile
|
||||||
url = https://github.com/isobit/vim-caddyfile
|
url = https://github.com/isobit/vim-caddyfile
|
||||||
[submodule "pack/general/start/git-blame.nvim"]
|
|
||||||
path = pack/general/start/git-blame.nvim
|
|
||||||
url = https://github.com/f-person/git-blame.nvim
|
|
||||||
|
|
|
||||||
5
init.lua
5
init.lua
|
|
@ -193,11 +193,10 @@ cmp.setup({
|
||||||
})
|
})
|
||||||
--cmd [[autocmd FileType *\(TelescopePrompt\)\@<! lua require'completion'.on_attach()]]
|
--cmd [[autocmd FileType *\(TelescopePrompt\)\@<! lua require'completion'.on_attach()]]
|
||||||
-- Setup lspconfig.
|
-- Setup lspconfig.
|
||||||
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
local capabilities = require('cmp_nvim_lsp').default_capabilities(vim.lsp.protocol.make_client_capabilities())
|
||||||
lsp.util.default_config = vim.tbl_deep_extend(
|
|
||||||
'force', lsp.util.default_config, { capabilities = capabilities, })
|
|
||||||
for _, server in ipairs(servers) do
|
for _, server in ipairs(servers) do
|
||||||
lsp[server].setup {
|
lsp[server].setup {
|
||||||
|
capabilities = capabilities,
|
||||||
on_attach = on_lsp_attach,
|
on_attach = on_lsp_attach,
|
||||||
flags = {
|
flags = {
|
||||||
debounce_text_changes = 150,
|
debounce_text_changes = 150,
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 746aed33ccdfe1e41f8b7d5683052337f1b20f01
|
|
||||||
Loading…
Add table
Reference in a new issue