diff options
| author | HampusM <hampus@hampusmat.com> | 2024-05-30 18:49:48 +0200 | 
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2024-05-30 18:49:48 +0200 | 
| commit | 45d25d54298434a2d5b76c330131c8ca71bd2d63 (patch) | |
| tree | 25c4ba96e4e71cde76478ca50399d3d14ae44db7 /lua | |
| parent | 7eb5e0651b0a03a2a8856d2ee9ba61814d04ad48 (diff) | |
use coc.nvim version that works without Neovim 0.10.0
Diffstat (limited to 'lua')
| -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" | 
