diff options
author | HampusM <hampus@hampusmat.com> | 2022-09-18 11:51:26 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-09-18 11:51:26 +0200 |
commit | b07b275cbe332be253e08509f412ca1e3d734495 (patch) | |
tree | a92e89ac1c8a737e2b9a3d1fb67f0200ea1fd0be | |
parent | 3c238894c5b6f15c5f27cea8bd3785eb0f1ebf0f (diff) |
fix: add run yarn install for coc.nvim
-rw-r--r-- | lua/plugins.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 4e43e14..f203555 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -16,7 +16,7 @@ return require("packer").startup(function(use) -- Coc -- use {"neoclide/coc.nvim", branch = "release"} - use "https://github.com/HampusMat/coc.nvim" + use { "https://github.com/HampusMat/coc.nvim", run = "yarn install --frozen-lockfile" } -- Navigation use "christoomey/vim-tmux-navigator" |