mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 11:02:37 +00:00 
			
		
		
		
	Merge branch 'main' into main
This commit is contained in:
		
				commit
				
					
						e946799757
					
				
			
		
					 19 changed files with 317 additions and 108 deletions
				
			
		|  | @ -23,7 +23,7 @@ isMaximal: { | ||||||
|       lightbulb.enable = true; |       lightbulb.enable = true; | ||||||
|       lspsaga.enable = false; |       lspsaga.enable = false; | ||||||
|       trouble.enable = true; |       trouble.enable = true; | ||||||
|       lspSignature.enable = true; |       lspSignature.enable = !isMaximal; # conflicts with blink in maximal | ||||||
|       otter-nvim.enable = isMaximal; |       otter-nvim.enable = isMaximal; | ||||||
|       nvim-docs-view.enable = isMaximal; |       nvim-docs-view.enable = isMaximal; | ||||||
|     }; |     }; | ||||||
|  | @ -124,7 +124,15 @@ isMaximal: { | ||||||
| 
 | 
 | ||||||
|     autopairs.nvim-autopairs.enable = true; |     autopairs.nvim-autopairs.enable = true; | ||||||
| 
 | 
 | ||||||
|     autocomplete.nvim-cmp.enable = true; |     # nvf provides various autocomplete options. The tried and tested nvim-cmp | ||||||
|  |     # is enabled in default package, because it does not trigger a build. We | ||||||
|  |     # enable blink-cmp in maximal because it needs to build its rust fuzzy | ||||||
|  |     # matcher library. | ||||||
|  |     autocomplete = { | ||||||
|  |       nvim-cmp.enable = !isMaximal; | ||||||
|  |       blink-cmp.enable = isMaximal; | ||||||
|  |     }; | ||||||
|  | 
 | ||||||
|     snippets.luasnip.enable = true; |     snippets.luasnip.enable = true; | ||||||
| 
 | 
 | ||||||
|     filetree = { |     filetree = { | ||||||
|  | @ -142,6 +150,7 @@ isMaximal: { | ||||||
|     binds = { |     binds = { | ||||||
|       whichKey.enable = true; |       whichKey.enable = true; | ||||||
|       cheatsheet.enable = true; |       cheatsheet.enable = true; | ||||||
|  |       hardtime-nvim.enable = isMaximal; | ||||||
|     }; |     }; | ||||||
| 
 | 
 | ||||||
|     telescope.enable = true; |     telescope.enable = true; | ||||||
|  |  | ||||||
|  | @ -39,7 +39,7 @@ An example flake that exposes your custom Neovim configuration might look like | ||||||
|                 theme.enable = true; |                 theme.enable = true; | ||||||
| 
 | 
 | ||||||
|                 # Enable Treesitter |                 # Enable Treesitter | ||||||
|                 tree-sitter.enable = true; |                 treesitter.enable = true; | ||||||
| 
 | 
 | ||||||
|                 # Other options will go here. Refer to the config |                 # Other options will go here. Refer to the config | ||||||
|                 # reference in Appendix B of the nvf manual. |                 # reference in Appendix B of the nvf manual. | ||||||
|  |  | ||||||
|  | @ -91,7 +91,7 @@ Release notes for release 0.5 | ||||||
| - Updated indent-blankine.nvim to v3 - this comes with a few option changes, | - Updated indent-blankine.nvim to v3 - this comes with a few option changes, | ||||||
|   which will be migrated with `renamedOptionModule` |   which will be migrated with `renamedOptionModule` | ||||||
| 
 | 
 | ||||||
| [jacekpoz](https://jacekpoz.pl): | [poz](https://poz.pet): | ||||||
| 
 | 
 | ||||||
| - Fixed scrollOffset not being used | - Fixed scrollOffset not being used | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -69,7 +69,7 @@ vim.api.nvim_set_keymap('n', '<leader>a', ':lua camelToSnake()<CR>', { noremap = | ||||||
| 
 | 
 | ||||||
| - Added rose-pine theme. | - Added rose-pine theme. | ||||||
| 
 | 
 | ||||||
| [jacekpoz](https://jacekpoz.pl): | [poz](https://poz.pet): | ||||||
| 
 | 
 | ||||||
| - Added `vim.autocomplete.alwaysComplete`. Allows users to have the autocomplete | - Added `vim.autocomplete.alwaysComplete`. Allows users to have the autocomplete | ||||||
|   window popup only when manually activated. |   window popup only when manually activated. | ||||||
|  |  | ||||||
|  | @ -162,7 +162,7 @@ The changes are, in no particular order: | ||||||
| - Add [lz.n] support and lazy-load some builtin plugins. | - Add [lz.n] support and lazy-load some builtin plugins. | ||||||
| - Add simpler helper functions for making keymaps | - Add simpler helper functions for making keymaps | ||||||
| 
 | 
 | ||||||
| [jacekpoz](https://jacekpoz.pl): | [poz](https://poz.pet): | ||||||
| 
 | 
 | ||||||
| [ocaml-lsp]: https://github.com/ocaml/ocaml-lsp | [ocaml-lsp]: https://github.com/ocaml/ocaml-lsp | ||||||
| [new-file-template.nvim]: https://github.com/otavioschwanck/new-file-template.nvim | [new-file-template.nvim]: https://github.com/otavioschwanck/new-file-template.nvim | ||||||
|  |  | ||||||
|  | @ -355,3 +355,13 @@ | ||||||
| 
 | 
 | ||||||
| - Fix [render-markdown.nvim] file_types option type to list, to accept merging. | - Fix [render-markdown.nvim] file_types option type to list, to accept merging. | ||||||
| - Add [avante.nvim] plugin under `vim.assistant.avante-nvim`. | - Add [avante.nvim] plugin under `vim.assistant.avante-nvim`. | ||||||
|  | 
 | ||||||
|  | [poz](https://poz.pet): | ||||||
|  | 
 | ||||||
|  | - Fix gitsigns null-ls issue. | ||||||
|  | 
 | ||||||
|  | [Haskex](https://github.com/haskex): | ||||||
|  | 
 | ||||||
|  | [Hardtime.nvim]: https://github.com/m4xshen/hardtime.nvim | ||||||
|  | 
 | ||||||
|  | - Add Plugin [Hardtime.nvim] under `vim.binds.hardtime-nvim` with `enable` and `setupOpts` options | ||||||
|  |  | ||||||
							
								
								
									
										12
									
								
								flake.lock
									
										
									
										generated
									
									
									
								
							
							
						
						
									
										12
									
								
								flake.lock
									
										
									
										generated
									
									
									
								
							|  | @ -38,11 +38,11 @@ | ||||||
|     }, |     }, | ||||||
|     "mnw": { |     "mnw": { | ||||||
|       "locked": { |       "locked": { | ||||||
|         "lastModified": 1745705214, |         "lastModified": 1746230955, | ||||||
|         "narHash": "sha256-XGfaHbFI4vvDuaoVO3IFYZKezXIO8rhUaMCGcjY71Ac=", |         "narHash": "sha256-X32sM3RQ3X2y6PzfNnX3rhUAlhuITdDOdfSrwZXjlsQ=", | ||||||
|         "owner": "Gerg-L", |         "owner": "Gerg-L", | ||||||
|         "repo": "mnw", |         "repo": "mnw", | ||||||
|         "rev": "c1f4587db4c53dcefa432c46c7a899a116d8e924", |         "rev": "2a1678ba8e4807bd855dd0da94ea2bef5bca733d", | ||||||
|         "type": "github" |         "type": "github" | ||||||
|       }, |       }, | ||||||
|       "original": { |       "original": { | ||||||
|  | @ -77,11 +77,11 @@ | ||||||
|     }, |     }, | ||||||
|     "nixpkgs": { |     "nixpkgs": { | ||||||
|       "locked": { |       "locked": { | ||||||
|         "lastModified": 1745377448, |         "lastModified": 1746152631, | ||||||
|         "narHash": "sha256-jhZDfXVKdD7TSEGgzFJQvEEZ2K65UMiqW5YJ2aIqxMA=", |         "narHash": "sha256-zBuvmL6+CUsk2J8GINpyy8Hs1Zp4PP6iBWSmZ4SCQ/s=", | ||||||
|         "owner": "nixos", |         "owner": "nixos", | ||||||
|         "repo": "nixpkgs", |         "repo": "nixpkgs", | ||||||
|         "rev": "507b63021ada5fee621b6ca371c4fca9ca46f52c", |         "rev": "032bc6539bd5f14e9d0c51bd79cfe9a055b094c3", | ||||||
|         "type": "github" |         "type": "github" | ||||||
|       }, |       }, | ||||||
|       "original": { |       "original": { | ||||||
|  |  | ||||||
|  | @ -14,7 +14,7 @@ | ||||||
|     env.RUSTC_BOOTSTRAP = true; |     env.RUSTC_BOOTSTRAP = true; | ||||||
| 
 | 
 | ||||||
|     useFetchCargoVendor = true; |     useFetchCargoVendor = true; | ||||||
|     cargoHash = "sha256-MWElqh7ENJ6CbLOnvz0DsP5YYu+e+y12GSUOfW1IKGU="; |     cargoHash = "sha256-IDoDugtNWQovfSstbVMkKHLBXKa06lxRWmywu4zyS3M="; | ||||||
| 
 | 
 | ||||||
|     nativeBuildInputs = [gitMinimal]; |     nativeBuildInputs = [gitMinimal]; | ||||||
|   }; |   }; | ||||||
|  |  | ||||||
|  | @ -1,10 +1,11 @@ | ||||||
| # From home-manager: https://github.com/nix-community/home-manager/blob/master/modules/lib/booleans.nix |  | ||||||
| {lib}: let | {lib}: let | ||||||
|   inherit (builtins) isString getAttr; |   inherit (builtins) isString getAttr; | ||||||
|   inherit (lib.options) mkOption; |   inherit (lib.options) mkOption; | ||||||
|   inherit (lib.types) bool; |   inherit (lib.types) listOf bool str submodule attrsOf anything either nullOr; | ||||||
|   inherit (lib.nvim.attrsets) mapListToAttrs; |   inherit (lib.nvim.attrsets) mapListToAttrs; | ||||||
|  |   inherit (lib.nvim.types) luaInline; | ||||||
| in { | in { | ||||||
|  |   # TODO: remove | ||||||
|   diagnosticsToLua = { |   diagnosticsToLua = { | ||||||
|     lang, |     lang, | ||||||
|     config, |     config, | ||||||
|  | @ -32,4 +33,48 @@ in { | ||||||
|       type = bool; |       type = bool; | ||||||
|       description = "Turn on ${desc} for enabled languages by default"; |       description = "Turn on ${desc} for enabled languages by default"; | ||||||
|     }; |     }; | ||||||
|  | 
 | ||||||
|  |   lspOptions = submodule { | ||||||
|  |     freeformType = attrsOf anything; | ||||||
|  |     options = { | ||||||
|  |       enable = mkOption { | ||||||
|  |         type = bool; | ||||||
|  |         default = true; | ||||||
|  |         description = "Whether to enable this LSP server."; | ||||||
|  |       }; | ||||||
|  | 
 | ||||||
|  |       capabilities = mkOption { | ||||||
|  |         type = nullOr (either luaInline (attrsOf anything)); | ||||||
|  |         default = null; | ||||||
|  |         description = "LSP capabilitiess to pass to lspconfig"; | ||||||
|  |       }; | ||||||
|  | 
 | ||||||
|  |       on_attach = mkOption { | ||||||
|  |         type = nullOr luaInline; | ||||||
|  |         default = null; | ||||||
|  |         description = "Function to execute when an LSP server attaches to a buffer"; | ||||||
|  |       }; | ||||||
|  | 
 | ||||||
|  |       filetypes = mkOption { | ||||||
|  |         type = nullOr (listOf str); | ||||||
|  |         default = null; | ||||||
|  |         description = "Filetypes to auto-attach LSP in"; | ||||||
|  |       }; | ||||||
|  | 
 | ||||||
|  |       cmd = mkOption { | ||||||
|  |         type = nullOr (listOf str); | ||||||
|  |         default = null; | ||||||
|  |         description = "Command used to start the LSP server"; | ||||||
|  |       }; | ||||||
|  | 
 | ||||||
|  |       root_markers = mkOption { | ||||||
|  |         type = nullOr (listOf str); | ||||||
|  |         default = null; | ||||||
|  |         description = '' | ||||||
|  |           "root markers" used to determine the root directory of the workspace, and | ||||||
|  |           the filetypes associated with this LSP server. | ||||||
|  |         ''; | ||||||
|  |       }; | ||||||
|  |     }; | ||||||
|  |   }; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -5,6 +5,7 @@ | ||||||
|     ./debug.nix |     ./debug.nix | ||||||
|     ./diagnostics.nix |     ./diagnostics.nix | ||||||
|     ./highlight.nix |     ./highlight.nix | ||||||
|  |     ./lsp.nix | ||||||
|     ./spellcheck.nix |     ./spellcheck.nix | ||||||
|   ]; |   ]; | ||||||
| } | } | ||||||
|  |  | ||||||
							
								
								
									
										82
									
								
								modules/neovim/init/lsp.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										82
									
								
								modules/neovim/init/lsp.nix
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,82 @@ | ||||||
|  | { | ||||||
|  |   config, | ||||||
|  |   lib, | ||||||
|  |   ... | ||||||
|  | }: let | ||||||
|  |   inherit (builtins) filter; | ||||||
|  |   inherit (lib.modules) mkIf mkMerge mkDefault; | ||||||
|  |   inherit (lib.options) mkOption; | ||||||
|  |   inherit (lib.types) attrsOf; | ||||||
|  |   inherit (lib.strings) concatLines; | ||||||
|  |   inherit (lib.attrsets) mapAttrsToList attrNames filterAttrs; | ||||||
|  |   inherit (lib.generators) mkLuaInline; | ||||||
|  |   inherit (lib.nvim.languages) lspOptions; | ||||||
|  |   inherit (lib.nvim.dag) entryAnywhere; | ||||||
|  |   inherit (lib.nvim.lua) toLuaObject; | ||||||
|  | 
 | ||||||
|  |   cfg = config.vim.lsp; | ||||||
|  | 
 | ||||||
|  |   lspConfigurations = | ||||||
|  |     mapAttrsToList ( | ||||||
|  |       name: value: '' | ||||||
|  |         vim.lsp.config["${name}"] = ${toLuaObject value} | ||||||
|  |       '' | ||||||
|  |     ) | ||||||
|  |     cfg.servers; | ||||||
|  | 
 | ||||||
|  |   enabledServers = filterAttrs (_: u: u.enable) cfg.servers; | ||||||
|  | in { | ||||||
|  |   options = { | ||||||
|  |     vim.lsp.servers = mkOption { | ||||||
|  |       type = attrsOf lspOptions; | ||||||
|  |       default = {}; | ||||||
|  |       example = '' | ||||||
|  |         { | ||||||
|  |           "*" = { | ||||||
|  |             root_markers = [".git"]; | ||||||
|  |             capabilities = { | ||||||
|  |               textDocument = { | ||||||
|  |                 semanticTokens = { | ||||||
|  |                   multilineTokenSupport = true; | ||||||
|  |                 }; | ||||||
|  |               }; | ||||||
|  |             }; | ||||||
|  |           }; | ||||||
|  | 
 | ||||||
|  |           "clangd" = { | ||||||
|  |             filetypes = ["c"]; | ||||||
|  |           }; | ||||||
|  |         } | ||||||
|  |       ''; | ||||||
|  |       description = '' | ||||||
|  |         LSP configurations that will be managed using `vim.lsp.config()` and | ||||||
|  |         related utilities added in Neovim 0.11. LSPs defined here will be | ||||||
|  |         added to the resulting {file}`init.lua` using `vim.lsp.config` and | ||||||
|  |         enabled through `vim.lsp.enable` below the configuration table. | ||||||
|  | 
 | ||||||
|  |         You may review the generated configuration by running {command}`nvf-print-config` | ||||||
|  |         in a shell. Please see {command}`:help lsp-config` for more details | ||||||
|  |         on the underlying API. | ||||||
|  |       ''; | ||||||
|  |     }; | ||||||
|  |   }; | ||||||
|  | 
 | ||||||
|  |   config = mkMerge [ | ||||||
|  |     { | ||||||
|  |       vim.lsp.servers."*" = { | ||||||
|  |         capabilities = mkDefault (mkLuaInline "capabilities"); | ||||||
|  |         on_attach = mkDefault (mkLuaInline "default_on_attach"); | ||||||
|  |       }; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     (mkIf (cfg.servers != {}) { | ||||||
|  |       vim.luaConfigRC.lsp-servers = entryAnywhere '' | ||||||
|  |         -- Individual LSP configurations managed by nvf. | ||||||
|  |         ${concatLines lspConfigurations} | ||||||
|  | 
 | ||||||
|  |         -- Enable configured LSPs explicitly | ||||||
|  |         vim.lsp.enable(${toLuaObject (filter (name: name != "*") (attrNames enabledServers))}) | ||||||
|  |       ''; | ||||||
|  |     }) | ||||||
|  |   ]; | ||||||
|  | } | ||||||
|  | @ -81,9 +81,11 @@ in { | ||||||
|     (mkIf cfg.codeActions.enable { |     (mkIf cfg.codeActions.enable { | ||||||
|       vim.lsp.null-ls = { |       vim.lsp.null-ls = { | ||||||
|         enable = true; |         enable = true; | ||||||
|         setupOpts.sources.gitsigns-ca = mkLuaInline '' |         setupOpts.sources = [ | ||||||
|  |           (mkLuaInline '' | ||||||
|             require("null-ls").builtins.code_actions.gitsigns |             require("null-ls").builtins.code_actions.gitsigns | ||||||
|         ''; |           '') | ||||||
|  |         ]; | ||||||
|       }; |       }; | ||||||
|     }) |     }) | ||||||
|   ]); |   ]); | ||||||
|  |  | ||||||
|  | @ -1,4 +1,8 @@ | ||||||
| {lib, ...}: let | { | ||||||
|  |   config, | ||||||
|  |   lib, | ||||||
|  |   ... | ||||||
|  | }: let | ||||||
|   inherit (lib.nvim.languages) mkEnable; |   inherit (lib.nvim.languages) mkEnable; | ||||||
| in { | in { | ||||||
|   imports = [ |   imports = [ | ||||||
|  | @ -47,7 +51,11 @@ in { | ||||||
|   ]; |   ]; | ||||||
| 
 | 
 | ||||||
|   options.vim.languages = { |   options.vim.languages = { | ||||||
|     enableLSP = mkEnable "LSP"; |     # LSPs are now built into Neovim, and we should enable them by default | ||||||
|  |     # if `vim.lsp.enable` is true. | ||||||
|  |     enableLSP = mkEnable "LSP" // {default = config.vim.lsp.enable;}; | ||||||
|  | 
 | ||||||
|  |     # Those are still managed by plugins, and should be enabled here. | ||||||
|     enableDAP = mkEnable "Debug Adapter"; |     enableDAP = mkEnable "Debug Adapter"; | ||||||
|     enableTreesitter = mkEnable "Treesitter"; |     enableTreesitter = mkEnable "Treesitter"; | ||||||
|     enableFormat = mkEnable "Formatting"; |     enableFormat = mkEnable "Formatting"; | ||||||
|  |  | ||||||
|  | @ -2,5 +2,6 @@ _: { | ||||||
|   imports = [ |   imports = [ | ||||||
|     ./which-key |     ./which-key | ||||||
|     ./cheatsheet |     ./cheatsheet | ||||||
|  |     ./hardtime | ||||||
|   ]; |   ]; | ||||||
| } | } | ||||||
|  |  | ||||||
							
								
								
									
										21
									
								
								modules/plugins/utility/binds/hardtime/config.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								modules/plugins/utility/binds/hardtime/config.nix
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,21 @@ | ||||||
|  | { | ||||||
|  |   config, | ||||||
|  |   lib, | ||||||
|  |   ... | ||||||
|  | }: let | ||||||
|  |   inherit (lib.modules) mkIf; | ||||||
|  |   inherit (lib.nvim.lua) toLuaObject; | ||||||
|  |   inherit (lib.nvim.dag) entryAnywhere; | ||||||
|  | 
 | ||||||
|  |   cfg = config.vim.binds.hardtime-nvim; | ||||||
|  | in { | ||||||
|  |   config = mkIf cfg.enable { | ||||||
|  |     vim = { | ||||||
|  |       startPlugins = ["hardtime-nvim"]; | ||||||
|  | 
 | ||||||
|  |       pluginRC.hardtime = entryAnywhere '' | ||||||
|  |         require("hardtime").setup (${toLuaObject cfg.setupOpts}) | ||||||
|  |       ''; | ||||||
|  |     }; | ||||||
|  |   }; | ||||||
|  | } | ||||||
							
								
								
									
										6
									
								
								modules/plugins/utility/binds/hardtime/default.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								modules/plugins/utility/binds/hardtime/default.nix
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,6 @@ | ||||||
|  | { | ||||||
|  |   imports = [ | ||||||
|  |     ./hardtime.nix | ||||||
|  |     ./config.nix | ||||||
|  |   ]; | ||||||
|  | } | ||||||
							
								
								
									
										10
									
								
								modules/plugins/utility/binds/hardtime/hardtime.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								modules/plugins/utility/binds/hardtime/hardtime.nix
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,10 @@ | ||||||
|  | {lib, ...}: let | ||||||
|  |   inherit (lib.options) mkEnableOption; | ||||||
|  |   inherit (lib.nvim.types) mkPluginSetupOption; | ||||||
|  | in { | ||||||
|  |   options.vim.binds.hardtime-nvim = { | ||||||
|  |     enable = mkEnableOption "hardtime helper for no repeat keybinds"; | ||||||
|  | 
 | ||||||
|  |     setupOpts = mkPluginSetupOption "hardtime-nvim" {}; | ||||||
|  |   }; | ||||||
|  | } | ||||||
|  | @ -11,13 +11,14 @@ in { | ||||||
|       description = '' |       description = '' | ||||||
|         [official documentation]: https://neovim.io/doc/user/lua.html#vim.loader.enable() |         [official documentation]: https://neovim.io/doc/user/lua.html#vim.loader.enable() | ||||||
| 
 | 
 | ||||||
|         the experimental Lua module loader to speed up the start up process |         Whethere to enable the experimental Lua module loader to speed up the start | ||||||
|  |         up process. If `true`, this will enable the experimental Lua module loader | ||||||
|  |         which: | ||||||
| 
 | 
 | ||||||
|         If `true`, this will enable the experimental Lua module loader which: |         * overrides loadfile | ||||||
|           - overrides loadfile |         * adds the lua loader using the byte-compilation cache | ||||||
|           - adds the lua loader using the byte-compilation cache |         * adds the libs loader | ||||||
|           - adds the libs loader |         * removes the default Neovim loader | ||||||
|           - removes the default Neovim loader |  | ||||||
| 
 | 
 | ||||||
|         ::: {.note} |         ::: {.note} | ||||||
|         The Lua module loader is *disabled* by default. Before setting this option, please |         The Lua module loader is *disabled* by default. Before setting this option, please | ||||||
|  |  | ||||||
|  | @ -63,10 +63,10 @@ | ||||||
|       "version_upper_bound": null, |       "version_upper_bound": null, | ||||||
|       "release_prefix": null, |       "release_prefix": null, | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "version": "v1.1.1", |       "version": "v1.2.0", | ||||||
|       "revision": "fe2e1d3e4498d60c5ce7440ff60f79f0920e34bf", |       "revision": "d72a826e1961e14f91d8867d10a27a89c5cfe748", | ||||||
|       "url": "https://api.github.com/repos/saghen/blink.cmp/tarball/v1.1.1", |       "url": "https://api.github.com/repos/saghen/blink.cmp/tarball/v1.2.0", | ||||||
|       "hash": "0l2m4162vk6xqrx5v0zh1b5p6wrr1jailq1995f101isyjygikan" |       "hash": "01phyx7y26p2123xpdp0zfp45rc8f014a8myxn2ga71m514vr9vc" | ||||||
|     }, |     }, | ||||||
|     "blink-cmp-spell": { |     "blink-cmp-spell": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -116,9 +116,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "89c4d158bc6d6ca03b4059452f2f9ffaa850db8a", |       "revision": "0a2c3c1ce8c3c56e7490cae835a981d5dbeb472c", | ||||||
|       "url": "https://github.com/mikavilpas/blink-ripgrep.nvim/archive/89c4d158bc6d6ca03b4059452f2f9ffaa850db8a.tar.gz", |       "url": "https://github.com/mikavilpas/blink-ripgrep.nvim/archive/0a2c3c1ce8c3c56e7490cae835a981d5dbeb472c.tar.gz", | ||||||
|       "hash": "04xh5hzbzvm0nvipsy0cw7k1vb1kcrb09xiw0j66cqddjvvpv6zk" |       "hash": "11wc0qdalz7fb6zpdvrdib1bx3qyvcbn3hr0h57plspln55rjhl5" | ||||||
|     }, |     }, | ||||||
|     "bufdelete-nvim": { |     "bufdelete-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -142,9 +142,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "5b5e3aef9ad7af84f463d17b5479f06b87d5c429", |       "revision": "b7bbdf93b42866f166af98d39a2563eedb7cabac", | ||||||
|       "url": "https://github.com/catppuccin/nvim/archive/5b5e3aef9ad7af84f463d17b5479f06b87d5c429.tar.gz", |       "url": "https://github.com/catppuccin/nvim/archive/b7bbdf93b42866f166af98d39a2563eedb7cabac.tar.gz", | ||||||
|       "hash": "0jmrwag2dx4b1g9x32xwxcr8y0l159hqks09z5miy99wav6dy7z2" |       "hash": "0f8wcpig84kihbz31w0hap4qs5gsdvch4sk2krn29v3k5bh3kcv0" | ||||||
|     }, |     }, | ||||||
|     "ccc-nvim": { |     "ccc-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -285,9 +285,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "c861811f8b825d30c0343951336d2bb8c8f6d990", |       "revision": "e55bbf5f6969ab41414d3fd68011366d3b80d024", | ||||||
|       "url": "https://github.com/olimorris/codecompanion.nvim/archive/c861811f8b825d30c0343951336d2bb8c8f6d990.tar.gz", |       "url": "https://github.com/olimorris/codecompanion.nvim/archive/e55bbf5f6969ab41414d3fd68011366d3b80d024.tar.gz", | ||||||
|       "hash": "0a1mzwh07lhrx893w7xdlhgiivbrwqp7a0b9wkdrna99x8kd9d77" |       "hash": "12jas52gh1dl33ir0bkxpqnfxjdkwh7h03qvfk1b3qk2fmr0abqn" | ||||||
|     }, |     }, | ||||||
|     "codewindow-nvim": { |     "codewindow-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -363,9 +363,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "73d2c590c74a0c582144987a4decb4a642755859", |       "revision": "2c8f4fab02e3e9ea42c6ad9b547e4207a914a397", | ||||||
|       "url": "https://github.com/Saecki/crates.nvim/archive/73d2c590c74a0c582144987a4decb4a642755859.tar.gz", |       "url": "https://github.com/Saecki/crates.nvim/archive/2c8f4fab02e3e9ea42c6ad9b547e4207a914a397.tar.gz", | ||||||
|       "hash": "08dyl4blgi0lb3s0jbl4jcpr4j1ncyrdvxjkrqmhqcg6bmwl7iqy" |       "hash": "0ddlm94v3gh1znacghvfpfmkgv6js9i62gf7mlqcrpz8snpf879s" | ||||||
|     }, |     }, | ||||||
|     "csharpls-extended-lsp-nvim": { |     "csharpls-extended-lsp-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -376,9 +376,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "master", |       "branch": "master", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "53c6dfc9790d262edd3d6a4483294bedf53d70f5", |       "revision": "c1edd1eaad2e649d3de8121337e3c515ac6db46e", | ||||||
|       "url": "https://github.com/Decodetalkers/csharpls-extended-lsp.nvim/archive/53c6dfc9790d262edd3d6a4483294bedf53d70f5.tar.gz", |       "url": "https://github.com/Decodetalkers/csharpls-extended-lsp.nvim/archive/c1edd1eaad2e649d3de8121337e3c515ac6db46e.tar.gz", | ||||||
|       "hash": "0hy3jaq5lq72yfvy77hijp8wzpbad7a1xfwrdljzbpm4w5j59dm2" |       "hash": "03sjrkay6c6ivd9zpm7isa9izxsvspkvbvy7f61nl020splhbl9m" | ||||||
|     }, |     }, | ||||||
|     "dashboard-nvim": { |     "dashboard-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -389,9 +389,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "master", |       "branch": "master", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "b0551fae871fc39454a67cca1adcf76fbe2f61f9", |       "revision": "591b5b29e2f17b97496ec3179f6ecd08bb8502cc", | ||||||
|       "url": "https://github.com/glepnir/dashboard-nvim/archive/b0551fae871fc39454a67cca1adcf76fbe2f61f9.tar.gz", |       "url": "https://github.com/glepnir/dashboard-nvim/archive/591b5b29e2f17b97496ec3179f6ecd08bb8502cc.tar.gz", | ||||||
|       "hash": "0m67ij62dwnzyspyckhqvcsk81nvc16gx8zphghw4w2w4vl9lsrj" |       "hash": "1f9ii3scd3zh4fch6h0mfmnfjx2fk6y4v3qc0cijk1vnyp2fm9qc" | ||||||
|     }, |     }, | ||||||
|     "diffview-nvim": { |     "diffview-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -467,9 +467,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "2f2e8d7010a0e5e725957828476b4e1625eaf82c", |       "revision": "41545d9d02a53d03b5f4da5881e8f30a7dc16031", | ||||||
|       "url": "https://github.com/Chaitanyabsprip/fastaction.nvim/archive/2f2e8d7010a0e5e725957828476b4e1625eaf82c.tar.gz", |       "url": "https://github.com/Chaitanyabsprip/fastaction.nvim/archive/41545d9d02a53d03b5f4da5881e8f30a7dc16031.tar.gz", | ||||||
|       "hash": "0m2qplldlcgzb6n5lwnwiac5n56zpyf3df015abfwrwba95zflfv" |       "hash": "1is587xa1b2fim4s3qc13ggwgpm02y4dmh64l4xjh6gyilh3fmkb" | ||||||
|     }, |     }, | ||||||
|     "fidget-nvim": { |     "fidget-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -519,9 +519,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "fc8f183479a472df60aa86f00e295462f2308178", |       "revision": "572f5660cf05f8cd8834e096d7b4c921ba18e175", | ||||||
|       "url": "https://github.com/rafamadriz/friendly-snippets/archive/fc8f183479a472df60aa86f00e295462f2308178.tar.gz", |       "url": "https://github.com/rafamadriz/friendly-snippets/archive/572f5660cf05f8cd8834e096d7b4c921ba18e175.tar.gz", | ||||||
|       "hash": "1clmyxkw0gk9p9j72d75byws75vi3r7d04wica2dq5i0zkk49b27" |       "hash": "08q7vs7p4grav819b6hl5y9zla8bbb461b6m1w0mjz6n6rqjjc0p" | ||||||
|     }, |     }, | ||||||
|     "fzf-lua": { |     "fzf-lua": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -532,9 +532,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "b11467c3fbfe48e4a815e4909f5c4e5b413ce6d0", |       "revision": "1cc70fb29e63ff26acba1e0cbca04705f8a485f1", | ||||||
|       "url": "https://github.com/ibhagwan/fzf-lua/archive/b11467c3fbfe48e4a815e4909f5c4e5b413ce6d0.tar.gz", |       "url": "https://github.com/ibhagwan/fzf-lua/archive/1cc70fb29e63ff26acba1e0cbca04705f8a485f1.tar.gz", | ||||||
|       "hash": "1yjfyz0fchibyb6wnnyxarn2v4fxxfvf9vy1pyvfc7mz5b4mzwc2" |       "hash": "032y3djil7bsb2h0sv5a0a1qg805j5p2jxxp01jcpmn870b6mcjd" | ||||||
|     }, |     }, | ||||||
|     "gesture-nvim": { |     "gesture-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -597,9 +597,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "9cd665f46ab7af2e49d140d328b8e72ea1cf511b", |       "revision": "1796c7cedfe7e5dd20096c5d7b8b753d8f8d22eb", | ||||||
|       "url": "https://github.com/lewis6991/gitsigns.nvim/archive/9cd665f46ab7af2e49d140d328b8e72ea1cf511b.tar.gz", |       "url": "https://github.com/lewis6991/gitsigns.nvim/archive/1796c7cedfe7e5dd20096c5d7b8b753d8f8d22eb.tar.gz", | ||||||
|       "hash": "110ykgvd3hbjq8ilz1yvfcic1jpqzyz4r13dswmpv7nvsi7a2lb5" |       "hash": "0xzmj3z3rd1zxv5hc87ncmnrzm6653ffaif9xkpvnc3n8l81ybsn" | ||||||
|     }, |     }, | ||||||
|     "glow-nvim": { |     "glow-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -623,9 +623,22 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "c54db7f7e67832fbdd0ac14633f62c8a6997ddcf", |       "revision": "91a0f8e460197a521d42a2e84a7a2a4010be4bbb", | ||||||
|       "url": "https://github.com/ellisonleao/gruvbox.nvim/archive/c54db7f7e67832fbdd0ac14633f62c8a6997ddcf.tar.gz", |       "url": "https://github.com/ellisonleao/gruvbox.nvim/archive/91a0f8e460197a521d42a2e84a7a2a4010be4bbb.tar.gz", | ||||||
|       "hash": "0i7dh2d3l1w6bga6gpfssam7w1qkd84q3cxyscdfsf4j9z4b62l2" |       "hash": "1bmxps0wawyvwyzcwzdxbf1wcqx6v7h6afj3yzgb38gz649wr8q7" | ||||||
|  |     }, | ||||||
|  |     "hardtime-nvim": { | ||||||
|  |       "type": "Git", | ||||||
|  |       "repository": { | ||||||
|  |         "type": "GitHub", | ||||||
|  |         "owner": "m4xshen", | ||||||
|  |         "repo": "hardtime.nvim" | ||||||
|  |       }, | ||||||
|  |       "branch": "main", | ||||||
|  |       "submodules": false, | ||||||
|  |       "revision": "9aaec65de041bddfc4c0af66919030d2950bcea8", | ||||||
|  |       "url": "https://github.com/m4xshen/hardtime.nvim/archive/9aaec65de041bddfc4c0af66919030d2950bcea8.tar.gz", | ||||||
|  |       "hash": "1rmcl200a4m3ip3xjzhh7ghhh2961xj2mw7yf0w44jpvs98gqb18" | ||||||
|     }, |     }, | ||||||
|     "harpoon": { |     "harpoon": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -649,9 +662,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "master", |       "branch": "master", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "fda0e5082ecc1c9e892f38b715d6f61e8829081d", |       "revision": "3bec28d8b0006be596497a5e1a03bda6ef6131cf", | ||||||
|       "url": "https://github.com/mrcjkb/haskell-tools.nvim/archive/fda0e5082ecc1c9e892f38b715d6f61e8829081d.tar.gz", |       "url": "https://github.com/mrcjkb/haskell-tools.nvim/archive/3bec28d8b0006be596497a5e1a03bda6ef6131cf.tar.gz", | ||||||
|       "hash": "0hi0ww7q0j042ssjk7x3d4s4vaninawpw3s0yrv1c4l1q5v6gnz1" |       "hash": "1kf3w7x8awa4iiw7ab8xfjh6fq47yvv6h2rmfw0jf8s99fvgarj2" | ||||||
|     }, |     }, | ||||||
|     "highlight-undo-nvim": { |     "highlight-undo-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -847,9 +860,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "master", |       "branch": "master", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "c9b9a22904c97d0eb69ccb9bab76037838326817", |       "revision": "7351d673f430e89f11962dc45b7360d6a0a26d2d", | ||||||
|       "url": "https://github.com/L3MON4D3/LuaSnip/archive/c9b9a22904c97d0eb69ccb9bab76037838326817.tar.gz", |       "url": "https://github.com/L3MON4D3/LuaSnip/archive/7351d673f430e89f11962dc45b7360d6a0a26d2d.tar.gz", | ||||||
|       "hash": "03anxdspqz7ylq4239jyr9y51mw5qw1lkccyvfhj6wfk43jjdryx" |       "hash": "0dd42ss93cppq3cp27336gail955lckqqc6bafkmawplxh93qn1q" | ||||||
|     }, |     }, | ||||||
|     "lz-n": { |     "lz-n": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -1490,9 +1503,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "299e174c3b8373c9c1f9be0bc3967c852712d0f3", |       "revision": "71bfdeddc90225e281ce34c378dc1b5914f5018d", | ||||||
|       "url": "https://github.com/nvim-neo-tree/neo-tree.nvim/archive/299e174c3b8373c9c1f9be0bc3967c852712d0f3.tar.gz", |       "url": "https://github.com/nvim-neo-tree/neo-tree.nvim/archive/71bfdeddc90225e281ce34c378dc1b5914f5018d.tar.gz", | ||||||
|       "hash": "0vm7hbcqj548pvl9vfmzsgpx73lmrnmhp399bprizg87zn73m005" |       "hash": "0cm4y2idpmf7i6daa4wl5b6n5ldzqr3pqmh29rc645c1xk2y0b80" | ||||||
|     }, |     }, | ||||||
|     "neocord": { |     "neocord": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -1516,9 +1529,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "35da593c55d78086a3203ee3e6d749fafe2e4e73", |       "revision": "8fdd9b2986acfb4ce310bebfc338111793862f00", | ||||||
|       "url": "https://github.com/nvim-neorg/neorg/archive/35da593c55d78086a3203ee3e6d749fafe2e4e73.tar.gz", |       "url": "https://github.com/nvim-neorg/neorg/archive/8fdd9b2986acfb4ce310bebfc338111793862f00.tar.gz", | ||||||
|       "hash": "0kxygwpfffa0blcy54g7cvm5laj77q0f72p69s43j9dpsps1h63y" |       "hash": "0xv3aasbhambywp6idhz44nlsh3hlarw3j7wwx7wn1whm6xbwvf6" | ||||||
|     }, |     }, | ||||||
|     "neorg-telescope": { |     "neorg-telescope": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -1594,9 +1607,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "751349f21bdf1acf7af091fead456866bf9a7e7d", |       "revision": "a49f5a79cdb76e0dc1a98899c8598f4db014c5e7", | ||||||
|       "url": "https://github.com/nvimtools/none-ls.nvim/archive/751349f21bdf1acf7af091fead456866bf9a7e7d.tar.gz", |       "url": "https://github.com/nvimtools/none-ls.nvim/archive/a49f5a79cdb76e0dc1a98899c8598f4db014c5e7.tar.gz", | ||||||
|       "hash": "1zhqyjs914ib1yq42xq3aphw8pl4168h2k3ybm92z00ahi51kbqn" |       "hash": "0x16saxsr3w3ivqpdjg05bkyfxzsiyfpsiwhyzsvqxg1qnkda3b2" | ||||||
|     }, |     }, | ||||||
|     "nord": { |     "nord": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -1776,9 +1789,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "master", |       "branch": "master", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "641e567f975feab3815b47c7d29e6148e07afa77", |       "revision": "46434074f188e6bfccf9d9153dd8be6b1381498b", | ||||||
|       "url": "https://github.com/neovim/nvim-lspconfig/archive/641e567f975feab3815b47c7d29e6148e07afa77.tar.gz", |       "url": "https://github.com/neovim/nvim-lspconfig/archive/46434074f188e6bfccf9d9153dd8be6b1381498b.tar.gz", | ||||||
|       "hash": "1238hk6v3mm6hzjbipz60rva7crv95h2vzg6ph9wzplq52kzryav" |       "hash": "0h13n1vjw6v8gp41yfc6qffbwwrxw81vcilkmxx9sim6671w5pzp" | ||||||
|     }, |     }, | ||||||
|     "nvim-metals": { |     "nvim-metals": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -1802,9 +1815,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "master", |       "branch": "master", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "f22bac988f2dd073601d75ba39ea5636ab6e38cb", |       "revision": "a34786c77a528519f6b8a142db7609f6e387842d", | ||||||
|       "url": "https://github.com/SmiteshP/nvim-navbuddy/archive/f22bac988f2dd073601d75ba39ea5636ab6e38cb.tar.gz", |       "url": "https://github.com/SmiteshP/nvim-navbuddy/archive/a34786c77a528519f6b8a142db7609f6e387842d.tar.gz", | ||||||
|       "hash": "034pmg403y0y1fxnb1jv291mr016bx1vn68y543v6v4dpbdlr7di" |       "hash": "0b6bazh531bixskpmmpkidqii4n3m7n2cp9bmzml5wb0wibazcac" | ||||||
|     }, |     }, | ||||||
|     "nvim-navic": { |     "nvim-navic": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -1815,9 +1828,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "master", |       "branch": "master", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "39231352aec0d1e09cebbffdd9dc20a5dc691ffe", |       "revision": "d0a8c17c4dc721b00bc2ac305c6ffbb036beeb74", | ||||||
|       "url": "https://github.com/SmiteshP/nvim-navic/archive/39231352aec0d1e09cebbffdd9dc20a5dc691ffe.tar.gz", |       "url": "https://github.com/SmiteshP/nvim-navic/archive/d0a8c17c4dc721b00bc2ac305c6ffbb036beeb74.tar.gz", | ||||||
|       "hash": "1xj2bzax8hynm2x9zbvsaxv1j22chklyygzm1kbqxxs077qn45ws" |       "hash": "0mxsnwvrjirpy2ichsilx6207z55xi42syg5d3fdgs2r1p1npggc" | ||||||
|     }, |     }, | ||||||
|     "nvim-neoclip-lua": { |     "nvim-neoclip-lua": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -1932,9 +1945,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "d4c8bdb06b7a589f004a53bf710196967752c63d", |       "revision": "cac999ec9f6302d2fd4ad8a846bf8f731af6e7cf", | ||||||
|       "url": "https://github.com/kevinhwang91/nvim-ufo/archive/d4c8bdb06b7a589f004a53bf710196967752c63d.tar.gz", |       "url": "https://github.com/kevinhwang91/nvim-ufo/archive/cac999ec9f6302d2fd4ad8a846bf8f731af6e7cf.tar.gz", | ||||||
|       "hash": "11zcr6vvj6gm5di63w55ccvwf2x7his8v9v8bingsz6l6n79dk6v" |       "hash": "14lvlv1wmbpw0dpyfz3gq7k760ip1903w5ibajqiaflw06afv4pn" | ||||||
|     }, |     }, | ||||||
|     "nvim-web-devicons": { |     "nvim-web-devicons": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -1945,9 +1958,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "master", |       "branch": "master", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "50b5b06bff13a9b4eab946de7c7033649a6618a1", |       "revision": "2c2b4eafce6cdd0cb165036faa17396eff18f847", | ||||||
|       "url": "https://github.com/nvim-tree/nvim-web-devicons/archive/50b5b06bff13a9b4eab946de7c7033649a6618a1.tar.gz", |       "url": "https://github.com/nvim-tree/nvim-web-devicons/archive/2c2b4eafce6cdd0cb165036faa17396eff18f847.tar.gz", | ||||||
|       "hash": "1jsrwcsyjwlzk2l3x417pr6s6cq4zk6b6k417hhmrprrw66ajdb6" |       "hash": "11yp02zg60gdmqa6rdk3rjn704k2kvjcs41w85y01b68k36w7pw2" | ||||||
|     }, |     }, | ||||||
|     "obsidian-nvim": { |     "obsidian-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -2010,9 +2023,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "master", |       "branch": "master", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "27ab1cf9e7ae142f9e9ffb218be50dd920f04cb3", |       "revision": "15d66ead1285d99f8a21c4ef4874ac62e9320fe6", | ||||||
|       "url": "https://github.com/nvim-orgmode/orgmode/archive/27ab1cf9e7ae142f9e9ffb218be50dd920f04cb3.tar.gz", |       "url": "https://github.com/nvim-orgmode/orgmode/archive/15d66ead1285d99f8a21c4ef4874ac62e9320fe6.tar.gz", | ||||||
|       "hash": "176v9y36258jm8h3aaph57wgr6s7rgmgdnq9hgwialwn4bygfym0" |       "hash": "05h766qj1vid5rs1mv8aiv6rsfrp0md9605sfr9vycip1rd8csgy" | ||||||
|     }, |     }, | ||||||
|     "otter-nvim": { |     "otter-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -2140,9 +2153,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "78ffe3b0500bbc7e37fabde723d96661538e8b32", |       "revision": "57c7f33f276876c994898683680da9e3a3590d0d", | ||||||
|       "url": "https://github.com/MeanderingProgrammer/render-markdown.nvim/archive/78ffe3b0500bbc7e37fabde723d96661538e8b32.tar.gz", |       "url": "https://github.com/MeanderingProgrammer/render-markdown.nvim/archive/57c7f33f276876c994898683680da9e3a3590d0d.tar.gz", | ||||||
|       "hash": "00dn9cpdvm7dy4xyhaij2rs0g0l926cqvjn03v06sray3adbyij5" |       "hash": "1lfypdqyka5idrkr3w62vx7j6p75r3ld7sz5i40y41svglnxyrsj" | ||||||
|     }, |     }, | ||||||
|     "rose-pine": { |     "rose-pine": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -2153,9 +2166,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "main", |       "branch": "main", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "96ff3993a67356ee85d1cdab9be652cdc1c5d1ac", |       "revision": "614892e32e94378d976a238f287532cfe790c1fe", | ||||||
|       "url": "https://github.com/rose-pine/neovim/archive/96ff3993a67356ee85d1cdab9be652cdc1c5d1ac.tar.gz", |       "url": "https://github.com/rose-pine/neovim/archive/614892e32e94378d976a238f287532cfe790c1fe.tar.gz", | ||||||
|       "hash": "0p712rivi5i3zlrigm86p8vrn1nvg4qils86snlw717cq3scj9gj" |       "hash": "1pi5z81xkgkx8yyfjfjj0hg66v2zcj04gxxbf5q2lqz70xcs3cgk" | ||||||
|     }, |     }, | ||||||
|     "rtp-nvim": { |     "rtp-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -2192,9 +2205,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "master", |       "branch": "master", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "3f2b7a94b7fa3c0f301dfa9644c94b543000efc2", |       "revision": "4b8c2edb55f548ed9c683f88dde2ffb235413b03", | ||||||
|       "url": "https://github.com/mrcjkb/rustaceanvim/archive/3f2b7a94b7fa3c0f301dfa9644c94b543000efc2.tar.gz", |       "url": "https://github.com/mrcjkb/rustaceanvim/archive/4b8c2edb55f548ed9c683f88dde2ffb235413b03.tar.gz", | ||||||
|       "hash": "1y3x6m3yglkyv37xgli9k3dlw59yy3jbsp1phx75xqma1480dzy5" |       "hash": "0d3kwvwj5cppwypvg8iasn5f8rviqyskkgh1wafs7chjm32dm4gb" | ||||||
|     }, |     }, | ||||||
|     "smartcolumn-nvim": { |     "smartcolumn-nvim": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  | @ -2390,9 +2403,9 @@ | ||||||
|       }, |       }, | ||||||
|       "branch": "master", |       "branch": "master", | ||||||
|       "submodules": false, |       "submodules": false, | ||||||
|       "revision": "f985f5a4fbc410c9e5367f6b5863a8fa502e516d", |       "revision": "fbc16dee336d8cc0d3d2382ea4a53f4a29725abf", | ||||||
|       "url": "https://github.com/RRethy/vim-illuminate/archive/f985f5a4fbc410c9e5367f6b5863a8fa502e516d.tar.gz", |       "url": "https://github.com/RRethy/vim-illuminate/archive/fbc16dee336d8cc0d3d2382ea4a53f4a29725abf.tar.gz", | ||||||
|       "hash": "0igx2i4k59vadhw7kgqvxjw9594n8p2n9yqszif9by8xq5gsd7g6" |       "hash": "072kgd7h7cjq4hskczxl60nsx3jpww9l7ypafcwk833ypahz899i" | ||||||
|     }, |     }, | ||||||
|     "vim-markdown": { |     "vim-markdown": { | ||||||
|       "type": "Git", |       "type": "Git", | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Farouk Brown
				Farouk Brown