-
-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(programming-language-support): add nvim-jqx (#386)
* feat(programming-language-support): add nvim-jqx * fix(nvim-jqx): Add dependencies to readme
- Loading branch information
Showing
2 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
lua/astrocommunity/programming-language-support/nvim-jqx/README.md
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,7 @@ | ||
# nvim-jqx | ||
If only one could easily browse and preview json files in neovim. Oh wait, nvim-jqx does just that! | ||
|
||
Dependencies | ||
- jq | ||
|
||
**Repository:** <https://github.com/gennaro-tedesco/nvim-jqx> |
4 changes: 4 additions & 0 deletions
4
lua/astrocommunity/programming-language-support/nvim-jqx/init.lua
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,4 @@ | ||
return { | ||
"gennaro-tedesco/nvim-jqx", | ||
ft = { "json", "yaml" }, | ||
} |