mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 03:13:38 +00:00
Add gitlinker-nvim
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
let
|
||||
vim-prettier = pkgs.vimUtils.buildVimPlugin {
|
||||
name = "vim-prettier";
|
||||
nativeBuildInputs = with pkgs; [ lua53Packages.luacheck ];
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "prettier";
|
||||
repo = "vim-prettier";
|
||||
@@ -10,6 +11,16 @@ let
|
||||
sha256 = "sha256-FDeyGH5OPAYV7zePCfDujsj+nGd5AFnqySPStJYEY2E=";
|
||||
};
|
||||
};
|
||||
gitlinker-nvim = pkgs.vimUtils.buildVimPlugin {
|
||||
name = "gitlinker-nvim";
|
||||
nativeBuildInputs = with pkgs; [ lua53Packages.luacheck stylua ];
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "ruifm";
|
||||
repo = "gitlinker.nvim";
|
||||
rev = "master";
|
||||
sha256 = "sha256-MpWK5f69rTMsb9b2YHzL5+N9FFWfwZ6GsVONsk72if0=";
|
||||
};
|
||||
};
|
||||
inherit (pkgs) stdenv;
|
||||
in
|
||||
{
|
||||
@@ -299,6 +310,7 @@ in
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
completion-nvim
|
||||
git-blame-nvim
|
||||
gitlinker-nvim
|
||||
glow-nvim
|
||||
lualine-nvim
|
||||
nvim-lspconfig
|
||||
@@ -306,6 +318,7 @@ in
|
||||
nvim-treesitter
|
||||
nvim-ts-rainbow
|
||||
nvim-web-devicons
|
||||
plenary-nvim
|
||||
rust-vim
|
||||
supertab
|
||||
syntastic
|
||||
|
Reference in New Issue
Block a user