diff options
| author | Anton Kastritskii <halloy52@gmail.com> | 2024-02-29 18:14:36 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-29 13:14:36 -0500 |
| commit | 61144436523206e94d07cbf56ea22578006eb98d (patch) | |
| tree | 050733b5c8f478932c9b9774f675c991d61f7402 | |
| parent | 68bd96fafaaf00b392bd1569cd12fc329a227302 (diff) | |
| download | dots-61144436523206e94d07cbf56ea22578006eb98d.tar.gz | |
feat: enable lua lsp snipppets (#660)
| -rw-r--r-- | nvim/init.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index c81ae2e..9146b5f 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -562,6 +562,9 @@ require('lazy').setup { -- If lua_ls is really slow on your computer, you can try this instead: -- library = { vim.env.VIMRUNTIME }, }, + completion = { + callSnippet = 'Replace', + }, -- You can toggle below to ignore Lua_LS's noisy `missing-fields` warnings -- diagnostics = { disable = { 'missing-fields' } }, }, |