neovim

add firestore syntax

+24 -1
+18 -1
flake.lock
··· 292 "nightly": "nightly", 293 "nixpkgs": "nixpkgs_3", 294 "stay-in-place-nvim": "stay-in-place-nvim", 295 - "tolerable": "tolerable" 296 } 297 }, 298 "stay-in-place-nvim": { ··· 352 "original": { 353 "owner": "numtide", 354 "repo": "treefmt-nix", 355 "type": "github" 356 } 357 }
··· 292 "nightly": "nightly", 293 "nixpkgs": "nixpkgs_3", 294 "stay-in-place-nvim": "stay-in-place-nvim", 295 + "tolerable": "tolerable", 296 + "vim-firestore": "vim-firestore" 297 } 298 }, 299 "stay-in-place-nvim": { ··· 353 "original": { 354 "owner": "numtide", 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", 372 "type": "github" 373 } 374 }
+6
flake.nix
··· 17 inputs.harpoon-nvim.flake = false; 18 inputs.stay-in-place-nvim.url = "github:gbprod/stay-in-place.nvim"; 19 inputs.stay-in-place-nvim.flake = false; 20 21 outputs = inputs: 22 inputs.flake-parts.lib.mkFlake {inherit inputs;} ({config, ...}: { ··· 101 fidget-nvim 102 presence-nvim 103 vim-wakatime 104 105 # nvim-cmp 106 nvim-cmp
··· 17 inputs.harpoon-nvim.flake = false; 18 inputs.stay-in-place-nvim.url = "github:gbprod/stay-in-place.nvim"; 19 inputs.stay-in-place-nvim.flake = false; 20 + inputs.vim-firestore.url = "github:delphinus/vim-firestore"; 21 + inputs.vim-firestore.flake = false; 22 23 outputs = inputs: 24 inputs.flake-parts.lib.mkFlake {inherit inputs;} ({config, ...}: { ··· 103 fidget-nvim 104 presence-nvim 105 vim-wakatime 106 + (pkgs.vimUtils.buildVimPlugin { 107 + src = inputs.vim-firestore; 108 + name = "firestore"; 109 + }) 110 111 # nvim-cmp 112 nvim-cmp