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 6348def commit e6933e4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
16 changes: 14 additions & 2 deletions home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,20 @@ in
repo = "nvim-juliana";
rev = "881d1a85d33f744b6b851a210becb3194da8e2a6";
# Determine with
# nix-prefetch-url --unpack https://github.com/kaiuri/nvim-juliana/archive/881d1a85d33f744b6b851a210becb3194da8e2a6.tar.gz;
sha256 = "0hw18bxwjkv3s2d814v3avmakvvm4a1f22n5xc87iayw8zsyn0kk"; # Replace with the actual SHA-256
# nix-prefetch-url --unpack https://github.com/kaiuri/nvim-juliana/archive/881d1a85d33f744b6b851a210becb3194da8e2a6.tar.gz
sha256 = "0hw18bxwjkv3s2d814v3avmakvvm4a1f22n5xc87iayw8zsyn0kk";
};
})
(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";
};
})

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 e6933e4

Please sign in to comment.