diff options
-rw-r--r-- | lua/plugins.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 390fcf5..add984c 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -22,7 +22,12 @@ return require("packer").startup(function(use) } -- Coc - use {"neoclide/coc.nvim", branch = "release"} + use { + "neoclide/coc.nvim", + -- Commit where inlay hints work without Neovim 0.10+ + commit = "3dc6153a85ed0f185abec1deb972a66af3fbbfb4", + run = "npm install" + } -- Syntax & formatting use "tikhomirov/vim-glsl" |