dotfiles/nix/pkgs/vim-plugins/standard-vim.nix
Oliver Davies 69a397e624 Move Nix files into a nix directory
Move everything from `config` to the root level.
2024-11-21 08:56:12 +00:00

12 lines
243 B
Nix

{ pkgs, ... }:
pkgs.vimUtils.buildVimPlugin {
name = "standard-vim";
src = pkgs.fetchFromGitHub {
owner = "tjdevries";
repo = "standard.vim";
rev = "master";
sha256 = "9VwkvV1Dv6cE4uDkPp36DozjWJOclDR883yDMYw000E=";
};
}