Vim/zh: Difference between revisions

Ardenet (talk | contribs)
Created page with "将以下代码添加到您的<code>~/.nixpkgs/config.nix</code>:"
Ardenet (talk | contribs)
Created page with "# 您的自定义配置就在这里!"
Line 184: Line 184:
     myVim = vim-full.customize {
     myVim = vim-full.customize {
       name = "vim-with-plugins";
       name = "vim-with-plugins";
       <div lang="en" dir="ltr" class="mw-content-ltr">
       # 在此处添加示例部分的代码
# add here code from the example section
</div>
     };
     };
     myNeovim = neovim.override {
     myNeovim = neovim.override {
       configure = {
       configure = {
         customRC = ''
         customRC = ''
           <div lang="en" dir="ltr" class="mw-content-ltr">
           # 您的自定义配置就在这里!
# here your custom configuration goes!
</div>
         '';
         '';
         packages.myVimPackage = with pkgs.vimPlugins; {
         packages.myVimPackage = with pkgs.vimPlugins; {