File tree 3 files changed +19
-0
lines changed
vim2nix/additional-nix-code
3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -1173,6 +1173,20 @@ rec {
1173
1173
1174
1174
} ;
1175
1175
1176
+ vim-yapf = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1177
+ name = "vim-yapf-2017-03-21" ;
1178
+ src = fetchgit {
1179
+ url = "https://github.com/mindriot101/vim-yapf" ;
1180
+ rev = "324380d77c9cf8e46e22b2e4391702273a53f563" ;
1181
+ sha256 = "0vsd53k5k8absc60qka8nlj2ij6k4zgff2a65ixc7vqcmawxr3nw" ;
1182
+ } ;
1183
+ dependencies = [ ] ;
1184
+ buildPhase = ''
1185
+ substituteInPlace ftplugin/python_yapf.vim \
1186
+ --replace '"yapf"' '"${ pkgs . yapf } /bin/yapf"'
Has a conversation. Original line has a conversation.
1187
+ '' ;
1188
+ } ;
1189
+
1176
1190
lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1177
1191
name = "lushtags-2017-04-19" ;
1178
1192
src = fetchgit {
Original file line number Diff line number Diff line change 92
92
"github:mhinz/vim-startify"
93
93
"github:michaeljsmith/vim-indent-object"
94
94
"github:mileszs/ack.vim"
95
+ "github:mindriot101/vim-yapf"
95
96
"github:mkasa/lushtags"
96
97
"github:mpickering/hlint-refactor-vim"
97
98
"github:nathanaelkane/vim-indent-guides"
Original file line number Diff line number Diff line change
1
+ buildPhase = ''
2
+ substituteInPlace ftplugin/python_yapf.vim \
3
+ --replace '"yapf"' '"${pkgs.yapf}/bin/yapf"'
4
+ '';
You can’t perform that action at this time.