-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
36 additions
and
31 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 |
---|---|---|
|
@@ -258,3 +258,7 @@ | |
path = pack/plugins/start/nvim-treesitter-context | ||
url = [email protected]:nvim-treesitter/nvim-treesitter-context.git | ||
ignore = dirty | ||
[submodule "pack/plugins/start/nvim-nio"] | ||
path = pack/plugins/start/nvim-nio | ||
url = [email protected]:nvim-neotest/nvim-nio.git | ||
ignore = dirty |
Submodule LuaSnip
updated
3 files
+1 −1 | doc/luasnip.txt | |
+18 −18 | plugin/luasnip.lua | |
+8 −0 | tests/helpers.lua |
Submodule bufferline.nvim
updated
7 files
+14 −0 | CHANGELOG.md | |
+1 −0 | doc/bufferline.txt | |
+1 −0 | lua/bufferline/config.lua | |
+3 −0 | lua/bufferline/duplicates.lua | |
+2 −3 | lua/bufferline/tabpages.lua | |
+1 −0 | lua/bufferline/types.lua | |
+58 −0 | tests/duplicates_spec.lua |
Submodule crates.nvim
updated
3 files
+7 −0 | .github/ISSUE_TEMPLATE/bug_report.yaml | |
+2 −8 | lua/crates/actions.lua | |
+19 −1 | lua/crates/util.lua |
Submodule gitlinker.nvim
updated
42 files
Submodule gitsigns.nvim
updated
6 files
+4 −0 | lua/gitsigns/actions.lua | |
+1 −1 | lua/gitsigns/debug/log.lua | |
+25 −10 | lua/gitsigns/git.lua | |
+15 −4 | lua/gitsigns/hunks.lua | |
+8 −2 | lua/gitsigns/manager.lua | |
+6 −1 | lua/gitsigns/watcher.lua |
Submodule leap.nvim
updated
13 files
+76 −110 | README.md | |
+146 −80 | doc/leap.txt | |
+23 −26 | fnl/leap/beacons.fnl | |
+4 −3 | fnl/leap/highlight.fnl | |
+6 −3 | fnl/leap/jump.fnl | |
+243 −214 | fnl/leap/main.fnl | |
+86 −92 | fnl/leap/search.fnl | |
+45 −45 | lua/leap/beacons.lua | |
+3 −3 | lua/leap/highlight.lua | |
+11 −8 | lua/leap/jump.lua | |
+296 −288 | lua/leap/main.lua | |
+63 −45 | lua/leap/search.lua | |
+9 −0 | plugin/init.lua |
Submodule lualine.nvim
updated
8 files
Submodule neogen
updated
13 files
+1 −3 | README.md | |
+17 −10 | doc/neogen.txt | |
+9 −9 | docs/advanced-integration.md | |
+134 −38 | lua/neogen/configurations/python.lua | |
+2 −9 | lua/neogen/generator.lua | |
+1 −1 | lua/neogen/granulator.lua | |
+7 −1 | lua/neogen/init.lua | |
+4 −4 | lua/neogen/locators/default.lua | |
+1 −2 | lua/neogen/locators/lua.lua | |
+3 −0 | lua/neogen/locators/typescript.lua | |
+13 −0 | lua/neogen/snippet.lua | |
+5 −1 | lua/neogen/utilities/helpers.lua | |
+3 −3 | lua/neogen/utilities/nodes.lua |
Submodule neogit
updated
48 files
Submodule noice.nvim
updated
8 files
+15 −0 | CHANGELOG.md | |
+1 −1 | doc/noice.nvim.txt | |
+1 −1 | lua/noice/config/init.lua | |
+1 −1 | lua/noice/lsp/message.lua | |
+1 −1 | lua/noice/message/init.lua | |
+6 −4 | lua/noice/text/block.lua | |
+1 −0 | lua/noice/ui/cmdline.lua | |
+5 −0 | lua/noice/ui/popupmenu/nui.lua |
Submodule none-ls.nvim
updated
12 files
Submodule nui.nvim
updated
16 files
+1 −1 | lua/nui/input/README.md | |
+1 −1 | lua/nui/input/init.lua | |
+6 −3 | lua/nui/layout/float.lua | |
+1 −0 | lua/nui/layout/init.lua | |
+1 −1 | lua/nui/layout/split.lua | |
+3 −1 | lua/nui/layout/utils.lua | |
+1 −1 | lua/nui/menu/README.md | |
+1 −1 | lua/nui/popup/README.md | |
+2 −2 | lua/nui/popup/border.lua | |
+4 −3 | lua/nui/popup/init.lua | |
+1 −1 | lua/nui/split/README.md | |
+2 −1 | lua/nui/split/init.lua | |
+8 −2 | lua/nui/table/README.md | |
+15 −9 | lua/nui/table/init.lua | |
+63 −0 | tests/nui/layout/init_spec.lua | |
+25 −0 | tests/nui/table/init_spec.lua |
Submodule nvim-autopairs
updated
3 files
+2 −0 | lua/nvim-autopairs/conds.lua | |
+1 −0 | lua/nvim-autopairs/rules/basic.lua | |
+12 −0 | tests/nvim-autopairs_spec.lua |
Submodule nvim-cmp
updated
15 files
+3 −1 | README.md | |
+25 −3 | doc/cmp.txt | |
+7 −1 | lua/cmp/config/default.lua | |
+13 −3 | lua/cmp/entry.lua | |
+7 −2 | lua/cmp/matcher.lua | |
+42 −33 | lua/cmp/matcher_spec.lua | |
+15 −6 | lua/cmp/types/cmp.lua | |
+3 −3 | lua/cmp/utils/feedkeys.lua | |
+10 −0 | lua/cmp/utils/misc.lua | |
+414 −0 | lua/cmp/utils/snippet.lua | |
+1 −1 | lua/cmp/utils/window.lua | |
+16 −4 | lua/cmp/view/custom_entries_view.lua | |
+17 −8 | lua/cmp/view/docs_view.lua | |
+4 −2 | lua/cmp/view/ghost_text_view.lua | |
+1 −1 | plugin/cmp.lua |
Submodule nvim-dap
updated
4 files
+20 −3 | doc/dap.txt | |
+15 −0 | lua/dap/protocol.lua | |
+7 −1 | lua/dap/session.lua | |
+38 −0 | tests/integration_spec.lua |
Submodule nvim-dap-ui
updated
37 files
Submodule nvim-highlight-colors
updated
9 files
Submodule nvim-lspconfig
updated
30 files
Submodule nvim-treesitter
updated
259 files
Submodule nvim-treesitter-context
updated
8 files
+1 −0 | README.md | |
+41 −41 | lua/treesitter-context/context.lua | |
+14 −40 | lua/treesitter-context/render.lua | |
+4 −0 | queries/cpp/context.scm | |
+40 −0 | queries/gdscript/context.scm | |
+3 −0 | queries/org/context.scm | |
+103 −0 | test/test.gd | |
+45 −0 | test/test.org |
Submodule nvim-treesitter-textobjects
updated
5 files
+3 −3 | README.md | |
+6 −2 | lua/nvim-treesitter/textobjects/shared.lua | |
+2 −2 | lua/nvim-treesitter/textobjects/swap.lua | |
+11 −0 | queries/css/textobjects.scm | |
+22 −40 | queries/fennel/textobjects.scm |
Submodule nvim-web-devicons
updated
6 files
+33 −12 | CONTRIBUTING.md | |
+17 −1 | README.md | |
+20 −3 | lua/nvim-web-devicons.lua | |
+20 −8 | lua/nvim-web-devicons/hi-test.lua | |
+145 −37 | lua/nvim-web-devicons/icons-default.lua | |
+141 −33 | lua/nvim-web-devicons/icons-light.lua |
Submodule octo.nvim
updated
8 files
+5 −4 | README.md | |
+2 −0 | doc/octo.txt | |
+15 −0 | lua/octo/config.lua | |
+2 −1 | lua/octo/gh/init.lua | |
+2 −2 | lua/octo/navigation.lua | |
+35 −25 | lua/octo/pickers/fzf-lua/pickers/search.lua | |
+5 −0 | lua/octo/reviews/file-entry.lua | |
+15 −7 | lua/octo/ui/writers.lua |
Submodule telescope-undo.nvim
updated
2 files
+16 −0 | README.md | |
+6 −0 | lua/telescope/_extensions/undo.lua |
Submodule telescope.nvim
updated
24 files
+6 −6 | README.md | |
+3 −0 | doc/telescope.txt | |
+2 −1 | lua/telescope/_.lua | |
+1 −1 | lua/telescope/actions/history.lua | |
+79 −0 | lua/telescope/actions/init.lua | |
+4 −1 | lua/telescope/actions/layout.lua | |
+6 −6 | lua/telescope/builtin/__files.lua | |
+1 −1 | lua/telescope/builtin/__git.lua | |
+1 −1 | lua/telescope/builtin/__internal.lua | |
+18 −11 | lua/telescope/builtin/__lsp.lua | |
+1 −0 | lua/telescope/builtin/init.lua | |
+2 −2 | lua/telescope/config.lua | |
+2 −1 | lua/telescope/from_entry.lua | |
+4 −4 | lua/telescope/make_entry.lua | |
+62 −1 | lua/telescope/mappings.lua | |
+12 −1 | lua/telescope/pickers.lua | |
+13 −13 | lua/telescope/previewers/buffer_previewer.lua | |
+7 −7 | lua/telescope/previewers/term_previewer.lua | |
+17 −7 | lua/telescope/previewers/utils.lua | |
+29 −21 | lua/telescope/sorters.lua | |
+60 −9 | lua/telescope/utils.lua | |
+84 −0 | lua/tests/automated/sorters_spec.lua | |
+141 −4 | lua/tests/automated/utils_spec.lua | |
+2 −1 | lua/tests/helpers.lua |