|
@@ -1,4 +1,4 @@
|
|
|
-{ fetchFromGitHub, buildNeovimPlugin }:
|
|
|
+{ fetchFromGitHub, fetchpatch, buildNeovimPlugin }:
|
|
|
let
|
|
|
plugins = builtins.fromJSON (builtins.readFile ./sources.json);
|
|
|
|
|
@@ -8,8 +8,15 @@ let
|
|
|
};
|
|
|
|
|
|
"leafgarland/typescript-vim" = {
|
|
|
- # make compiler build entire project
|
|
|
- patches = [ ./typescript-vim-compiler.patch ];
|
|
|
+ patches = [
|
|
|
+ # make compiler build entire project
|
|
|
+ ./typescript-vim-compiler.patch
|
|
|
+ # prevent unsetting omnifunc
|
|
|
+ (fetchpatch {
|
|
|
+ url = "https://github.com/leafgarland/typescript-vim/pull/202.patch";
|
|
|
+ sha256 = "sha256-xHgOdoA8qBesCgNk9J8dINSgSyXj4ymmfcJEm+qWs54";
|
|
|
+ })
|
|
|
+ ];
|
|
|
};
|
|
|
|
|
|
"nvim-telescope/telescope-fzf-native.nvim" = {
|