commit e5dae2876fca97080120908985e27f61e0b3b936
parent 0a9c086d4ac4779de0edd6f5d66a48597ea6e2e4
Author: Thomas Vigouroux <me@vigoux.eu>
Date: Thu, 7 Mar 2024 10:06:18 +0100
feat(deps): use ssh for some dependencies
This gives rw access to plugins and simplifies the development process
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lua/plugins.lua b/lua/plugins.lua
@@ -84,8 +84,8 @@ require "mason".setup {}
add "vigoux/ltex-ls.nvim"
-- My stuff
-add { name = "complementree.nvim" }
-add { source = 'https://git.sr.ht/~vigoux/architext.nvim' }
+add { source = "ssh://git@git.sr.ht/~vigoux/complementree.nvim" }
+add { source = "ssh://git@git.sr.ht/~vigoux/architext.nvim" }
local function run_cmd(cmd)
return function(data)
@@ -104,7 +104,7 @@ end
local azy_build_lib = run_cmd { "make", "lib" }
add {
- source = 'https://git.sr.ht/~vigoux/azy.nvim',
+ source = 'ssh://git@git.sr.ht/~vigoux/azy.nvim',
hooks = {
post_checkout = azy_build_lib,
post_install = azy_build_lib,