forked from AstroNvim/astrocommunity
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes AstroNvim#895 Adds fitten code ai assistant with inline completion mode
- Loading branch information
1 parent
0c21abb
commit d6f2ece
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
# codeium.vim | ||
|
||
Fitten Code AI Programming Assistant for Neovim | ||
|
||
**Repository:** <https://github.com/luozhiya/fittencode.nvim> | ||
|
||
### Default Mappings | ||
|
||
| Mappings | Action | | ||
|-------------|------------------------| | ||
| `Tab` | Accept all suggestions | | ||
| `Ctrl + ⬇️` | Accept line | | ||
| `Ctrl + ➡️` | Accept word | | ||
|
||
|
||
_Note_: You need to auth first before usage - Run Fitten login <user> <password> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
return { | ||
"luozhiya/fittencode.nvim", | ||
event = "User AstroFile", | ||
cmd = "Fitten", | ||
opts = {}, | ||
} |