diff options
author | Brahmajit Das <listout@listout.xyz> | 2025-09-04 12:13:53 +0530 |
---|---|---|
committer | Brahmajit Das <listout@listout.xyz> | 2025-09-04 12:13:53 +0530 |
commit | 43e83dc772aabe520832be8682b68ec1b48f485b (patch) | |
tree | 0f2360e14c1c2249f00af280c8f12d5cc2ad6d82 | |
parent | bc41eee545070374be4fdbffd018a889c62f63d7 (diff) |
Signed-off-by: Brahmajit Das <listout@listout.xyz>
-rw-r--r-- | plugin/lsp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/lsp.lua b/plugin/lsp.lua index b129cb3..3d913da 100644 --- a/plugin/lsp.lua +++ b/plugin/lsp.lua @@ -9,7 +9,7 @@ vim.api.nvim_create_autocmd('LspAttach', { group = vim.api.nvim_create_augroup('UserLspConfig', {}), callback = function(ev) -- Enable completion triggered by <c-x><c-o> - vim.bo[ev.buf].omnifunc = 'v:lua.vim.lsp.omnifunc' + -- vim.bo[ev.buf].omnifunc = 'v:lua.vim.lsp.omnifunc' -- Buffer local mappings. -- See `:help vim.lsp.*` for documentation on any of the below functions |