diff --git a/site-modules/core/manifests/tmux.pp b/site-modules/core/manifests/tmux.pp index 3a99ee6..7d6f239 100644 --- a/site-modules/core/manifests/tmux.pp +++ b/site-modules/core/manifests/tmux.pp @@ -20,21 +20,21 @@ class core::tmux { vcsrepo { "${user_home}/.tmux/plugins/tmux-yank": ensure => latest, - source => 'git://github.com/tmux-plugins/tmux-yank.git', + source => 'https://github.com/tmux-plugins/tmux-yank.git', provider => git, revision => 'master', } vcsrepo { "${user_home}/.tmux/plugins/tmux-open": ensure => latest, - source => 'git://github.com/tmux-plugins/tmux-open.git', + source => 'https://github.com/tmux-plugins/tmux-open.git', provider => git, revision => 'master', } vcsrepo { "${user_home}/.tmux/plugins/tmux-copycat": ensure => latest, - source => 'git://github.com/tmux-plugins/tmux-copycat.git', + source => 'https://github.com/tmux-plugins/tmux-copycat.git', provider => git, revision => 'master', } diff --git a/site-modules/core/manifests/zsh.pp b/site-modules/core/manifests/zsh.pp index 6c95630..21a1416 100644 --- a/site-modules/core/manifests/zsh.pp +++ b/site-modules/core/manifests/zsh.pp @@ -1,6 +1,6 @@ class core::zsh { vcsrepo { "${user_home}/.oh-my-zsh": - source => 'git://github.com/robbyrussell/oh-my-zsh.git', + source => 'https://github.com/robbyrussell/oh-my-zsh.git', provider => 'git', user => $user, revision => 'master', @@ -50,13 +50,13 @@ class core::zsh { } vcsrepo { "${user_home}/.oh-my-zsh/custom/plugins/zsh-autosuggestions": - source => 'git://github.com/zsh-users/zsh-autosuggestions', + source => 'https://github.com/zsh-users/zsh-autosuggestions', provider => 'git', user => $user, } vcsrepo { "${user_home}/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting": - source => 'git://github.com/zsh-users/zsh-syntax-highlighting.git', + source => 'https://github.com/zsh-users/zsh-syntax-highlighting.git', provider => 'git', user => $user, }