From b41127e24f2dcd2f39f4adf3deb2dbdd99343f99 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Tue, 6 Jun 2023 19:00:25 -0400 Subject: [PATCH] Trying to skip installing the theme for now --- homeConfig/modules/neovim/config/plugins.nix | 36 ++++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/homeConfig/modules/neovim/config/plugins.nix b/homeConfig/modules/neovim/config/plugins.nix index be0a373..476cc3a 100644 --- a/homeConfig/modules/neovim/config/plugins.nix +++ b/homeConfig/modules/neovim/config/plugins.nix @@ -1,25 +1,25 @@ { pkgs, ... }: -let - github-theme = pkgs.vimUtils.buildVimPlugin { - name = "github-theme"; - src = builtins.fetchTarball { - url = "https://github.com/projekt0n/github-nvim-theme/archive/refs/tags/v1.0.0.tar.gz"; - sha256 = "15c65qw1sgw3v5wrwbg5f1fqb82qq1yr44g2nrwb7b7m134jyr1h"; - }; - }; - -in +#let +# github-theme = pkgs.vimUtils.buildVimPlugin { +# name = "github-theme"; +# src = builtins.fetchTarball { +# url = "https://github.com/projekt0n/github-nvim-theme/archive/refs/tags/v1.0.0.tar.gz"; +# sha256 = "15c65qw1sgw3v5wrwbg5f1fqb82qq1yr44g2nrwb7b7m134jyr1h"; +# }; +# }; +# +#in with pkgs.vimPlugins; [ - { - plugin = github-theme; - config = '' - lua << EOF - vim.cmd('colorscheme github_dark_high_contrast') - EOF - ''; - } +# { +# plugin = github-theme; +# config = '' +# lua << EOF +# vim.cmd('colorscheme github_dark_high_contrast') +# EOF +# ''; +# } { plugin = lazygit-nvim; }