Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: e2ef48c483b9
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 77cf8388be04
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Sep 28, 2020

  1. macvim: add configuration similar to vim_configurable and neovim

    vim_configurable and neovim have both supported a mechanism to build
    them with a custom vimrc that supports plugins from Nix. This updates
    MacVim to support the same sort of configuration using an expression
    like
    
      macvim.configure {
        customRC = ''
          # custom configuration goes here
        '';
        packages.myVimPackage = with pkgs.vimPlugins; {
          start = [ youcompleteme fugitive ];
          opt = [ phpCompletion elm-vim ];
        }
      }
    
    Once configured, .override will allow for editing the configuration.
    
    Like vim_configurable and neovim, configuring macvim does not require
    rebuilding it. Also like them, configuring macvim turns off the user
    vimrc file.
    lilyball committed Sep 28, 2020
    Copy the full SHA
    72e3217 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2020

  1. Merge pull request #93733 from lilyball/macvim-plugins

    macvim: add configuration similar to vim_configurable and neovim
    marsam committed Sep 29, 2020
    Copy the full SHA
    77cf838 View commit details
    Browse the repository at this point in the history