Skip to content

Commit

Permalink
chore(nvim): move vim-indent-sentence to nix
Browse files Browse the repository at this point in the history
topic:chorenvim-move-vim-indent-sentence-to-nix
relative:chorenvim-move-linediff-to-nix
labels:draft
  • Loading branch information
kaihowl committed Dec 15, 2024
1 parent bf3dd16 commit d6e69ad
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 13 additions & 0 deletions home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,19 @@ in
};
})

(pkgs.vimUtils.buildVimPlugin {
pname = "vim-indent-sentence"; # Color scheme for github
version = "2014-09-04";
src = pkgs.fetchFromGitHub {
owner = "kaihowl";
repo = "vim-indent-sentence";
rev = "87069e15148ad0f27e7b070bc7e123da6050e147";
# Determine with
# nix-prefetch-url --unpack https://github.com/kaihowl/vim-indent-sentence/archive/87069e15148ad0f27e7b070bc7e123da6050e147.tar.gz
sha256 = "1qg8c2fcgvv200ibdmm37yr57js99mci5xavdlxmb5nrjp88amld";
};
})

# Color schemes
edge
gruvbox
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 @@ -101,8 +101,6 @@ set shortmess+=c
" Specify a directory for plugins
call plug#begin(stdpath('data') . '/plugged')

Plug 'kaihowl/vim-indent-sentence'

Plug 'gaving/vim-textobj-argument'

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

0 comments on commit d6e69ad

Please sign in to comment.