Skip to content

Commit

Permalink
chore(nvim): last plugin, vim-textobj-argument moved to nix
Browse files Browse the repository at this point in the history
topic:chorenvim-last-plugin-vim-textobj-argument-moved-to-nix
relative:chorenvim-move-vim-indent-sentence-to-nix

labels:draft
  • Loading branch information
kaihowl committed Dec 15, 2024
1 parent d6e69ad commit c82ea8e
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 @@ -174,6 +174,19 @@ in
};
})

(pkgs.vimUtils.buildVimPlugin {
pname = "vim-textobj-argument"; # Color scheme for github
version = "2013-02-23";
src = pkgs.fetchFromGitHub {
owner = "gaving";
repo = "vim-textobj-argument";
rev = "179a8d42e73df72ba32d6c641f4edc0def59e0cb";
# Determine with
# nix-prefetch-url --unpack https://github.com/gaving/vim-textobj-argument/archive/179a8d42e73df72ba32d6c641f4edc0def59e0cb.tar.gz
sha256 = "18dngkm98rwyjxzjidpqzz7hcq600akyd1j6m2aybcazg73is6pp";
};
})

# 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 'gaving/vim-textobj-argument'

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

0 comments on commit c82ea8e

Please sign in to comment.