neovim

add firestore syntax

+24 -1
+18 -1
flake.lock
··· 292 292 "nightly": "nightly", 293 293 "nixpkgs": "nixpkgs_3", 294 294 "stay-in-place-nvim": "stay-in-place-nvim", 295 - "tolerable": "tolerable" 295 + "tolerable": "tolerable", 296 + "vim-firestore": "vim-firestore" 296 297 } 297 298 }, 298 299 "stay-in-place-nvim": { ··· 352 353 "original": { 353 354 "owner": "numtide", 354 355 "repo": "treefmt-nix", 356 + "type": "github" 357 + } 358 + }, 359 + "vim-firestore": { 360 + "flake": false, 361 + "locked": { 362 + "lastModified": 1691283382, 363 + "narHash": "sha256-sNnuEX3k3X4iXIgDK4HKgruHK//IYwiYwEKfoWI80WU=", 364 + "owner": "delphinus", 365 + "repo": "vim-firestore", 366 + "rev": "417d41ba56c54cb21fab1f4b01c8ba4deed6bbe0", 367 + "type": "github" 368 + }, 369 + "original": { 370 + "owner": "delphinus", 371 + "repo": "vim-firestore", 355 372 "type": "github" 356 373 } 357 374 }
+6
flake.nix
··· 17 17 inputs.harpoon-nvim.flake = false; 18 18 inputs.stay-in-place-nvim.url = "github:gbprod/stay-in-place.nvim"; 19 19 inputs.stay-in-place-nvim.flake = false; 20 + inputs.vim-firestore.url = "github:delphinus/vim-firestore"; 21 + inputs.vim-firestore.flake = false; 20 22 21 23 outputs = inputs: 22 24 inputs.flake-parts.lib.mkFlake {inherit inputs;} ({config, ...}: { ··· 101 103 fidget-nvim 102 104 presence-nvim 103 105 vim-wakatime 106 + (pkgs.vimUtils.buildVimPlugin { 107 + src = inputs.vim-firestore; 108 + name = "firestore"; 109 + }) 104 110 105 111 # nvim-cmp 106 112 nvim-cmp