Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ Very fast autocomplete

```lua
-- stable version
use {"ninetyfive-gg/ninetyfive.nvim", tag = "*" }
use {"numerataz/ninetyfive.nvim", tag = "*" }
-- dev version
use {"ninetyfive-gg/ninetyfive.nvim"}
use {"numerataz/ninetyfive.nvim"}
```

</td>
Expand All @@ -44,9 +44,9 @@ use {"ninetyfive-gg/ninetyfive.nvim"}

```vim
" stable version
Plug "ninetyfive-gg/ninetyfive.nvim", { "tag": "*" }
Plug "numerataz/ninetyfive.nvim", { "tag": "*" }
" dev version
Plug "ninetyfive-gg/ninetyfive.nvim"
Plug "numerataz/ninetyfive.nvim"
```

</td>
Expand All @@ -61,9 +61,9 @@ Plug "ninetyfive-gg/ninetyfive.nvim"

```lua
-- stable version
require("lazy").setup({{"ninetyfive-gg/ninetyfive.nvim", version = "*"}})
require("lazy").setup({{"numerataz/ninetyfive.nvim", version = "*"}})
-- dev version
require("lazy").setup({"ninetyfive-gg/ninetyfive.nvim"})
require("lazy").setup({"numerataz/ninetyfive.nvim"})
```

</td>
Expand Down Expand Up @@ -135,7 +135,7 @@ require("ninetyfive").setup({

```lua
use {
"ninetyfive-gg/ninetyfive.nvim",
"numerataz/ninetyfive.nvim",
tag = "*", -- use stable version
config = function()
require("ninetyfive").setup({
Expand All @@ -160,7 +160,7 @@ use {
Add to your `~/.config/nvim/init.vim` or `~/.vimrc`:

```vim
Plug 'ninetyfive-gg/ninetyfive.nvim', { 'tag': '*' }
Plug 'numerataz/ninetyfive.nvim', { 'tag': '*' }

" After plug#end(), add the setup configuration
lua << EOF
Expand All @@ -186,7 +186,7 @@ Update your lazy config (generally in `~/.config/nvim/init.lua`) or create a plu

```lua
return {
"ninetyfive-gg/ninetyfive.nvim",
"numerataz/ninetyfive.nvim",
version = "*", -- use stable version, or `false` for dev version
config = function()
require("ninetyfive").setup({
Expand Down
4 changes: 2 additions & 2 deletions ninetyfive-scm-1.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = {
detailed = [[
TODO
]],
homepage = 'https://github.com/ninetyfive-gg/ninetyfive.nvim',
homepage = 'https://github.com/numerataz/ninetyfive.nvim',
license = 'MIT',
}

Expand All @@ -18,7 +18,7 @@ dependencies = {
}

source = {
url = 'git://github.com/ninetyfive-gg/ninetyfive.nvim',
url = 'git://github.com/numerataz/ninetyfive.nvim',
}

build = {
Expand Down
Loading