Skip to content

Commit

Permalink
chore(nvim): move github color scheme to nix
Browse files Browse the repository at this point in the history
topic: chorenvim-move-github-color-scheme-to-nix
relative: chorenvim-move-custom-version-of-juliana-to-nix
labels: draft
  • Loading branch information
kaihowl committed Dec 15, 2024
1 parent d2520b2 commit f8c9563
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 12 additions & 0 deletions home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,18 @@ in
sha256 = "0hw18bxwjkv3s2d814v3avmakvvm4a1f22n5xc87iayw8zsyn0kk"; # Replace with the actual SHA-256
};
})
(pkgs.vimUtils.buildVimPlugin {
pname = "github.vim"; # Color scheme for github
version = "2022-04-03";
src = pkgs.fetchFromGitHub {
owner = "1612492";
repo = "github.vim";
rev = "35368f952bda654b82d69c2770510696c781ac32";
# Determine with
# nix-prefetch-url --unpack https://github.com/1612492/github.vim/archive/35368f952bda654b82d69c2770510696c781ac32.tar.gz;
sha256 = "0qaqwmfs6bs3idlrcqajcj66cw2vz0pxdpd70js9nj5028dwkirh"; # Replace with the actual SHA-256
};
})

# Completion plugins
nvim-cmp
Expand Down
2 changes: 0 additions & 2 deletions nvim/config--nvim--init.vim.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ Plug 'vim-scripts/linediff.vim'

Plug 'kaihowl/vim-indent-sentence'

Plug '1612492/github.vim'

Plug 'gaving/vim-textobj-argument'

" the plug#end automatically calls "filetype plugin indent on" and "syntax enable"
Expand Down

0 comments on commit f8c9563

Please sign in to comment.