Skip to content

Commit 76b0339

Browse files
Augment Vim v0.2.0
1 parent 942c79a commit 76b0339

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,27 +25,27 @@
2525
- Manual installation (Vim):
2626

2727
```bash
28-
git clone git@github.com:augmentcode/augment.vim.git \
28+
git clone https://github.com/augmentcode/augment.vim.git \
2929
~/.vim/pack/augment/start/augment.vim
3030
```
3131

3232
- Manual installation (Neovim):
3333

3434
```bash
35-
git clone git@github.com:augmentcode/augment.vim.git \
35+
git clone https://github.com/augmentcode/augment.vim.git \
3636
~/.config/nvim/pack/augment/start/augment.vim
3737
```
3838

3939
- Vim Plug:
4040

4141
```vim
42-
Plug 'git@github.com:augmentcode/augment.vim.git'
42+
Plug 'augmentcode/augment.vim'
4343
```
4444

4545
- Lazy.nvim:
4646

4747
```lua
48-
{ 'git@github.com:augmentcode/augment.vim.git' },
48+
{ 'augmentcode/augment.vim' },
4949
```
5050
5151
1. Open Vim and sign in to Augment with the `:Augment signin` command.

autoload/augment/version.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
" MIT License - See LICENSE.md for full terms
33

44
function! augment#version#Version() abort
5-
return '0.7.0'
5+
return '0.2.0'
66
endfunction

0 commit comments

Comments
 (0)