Skip to content

Commit

Permalink
Add vim-sentencer
Browse files Browse the repository at this point in the history
This plugin allows formatting one-sentence-per-line for things like
markdown. The repo is found at github.com/whonore/vim-sentencer.
  • Loading branch information
timraymond committed Dec 11, 2024
1 parent f52948a commit 62d5248
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions home/programs/vim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
pkgs.vim-bicep
vim-terraform
ultisnips
pkgs.vim-sentencer
];
extraConfig = ''
colorscheme space_vim_theme
Expand Down
11 changes: 11 additions & 0 deletions overlays/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,17 @@ final: prev: {
};
};

vim-sentencer = prev.vimUtils.buildVimPlugin {
pname = "vim-sentencer";
version = "8826dcb";
src = prev.fetchFromGitHub {
owner = "whonore";
repo = "vim-sentencer";
rev = "master";
sha256 = "sha256-6hI+JBdK+LJiTp1pPceHPKzX26cx0LLUmv3yI2TNPyk=";
};
};

pinentry-wsl = prev.stdenv.mkDerivation {
pname = "pinentry-wsl";
version = "41c6ea1";
Expand Down

0 comments on commit 62d5248

Please sign in to comment.