-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
terminal/editors/neovim: add vim-dirtytalk
- Loading branch information
1 parent
8dbcc2e
commit e2cb8c5
Showing
2 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
modules/home/programs/terminal/editors/neovim/plugins/dirtytalk.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ pkgs, ... }: | ||
{ | ||
programs.nixvim = { | ||
extraPlugins = [ | ||
(pkgs.vimUtils.buildVimPlugin { | ||
name = "vim-dirtytalk"; | ||
src = pkgs.fetchFromGitHub { | ||
owner = "psliwka"; | ||
repo = "vim-dirtytalk"; | ||
rev = "aa57ba902b04341a04ff97214360f56856493583"; | ||
hash = "sha256-azU5jkv/fD/qDDyCU1bPNXOH6rmbDauG9jDNrtIXc0Y="; | ||
}; | ||
}) | ||
]; | ||
|
||
opts.spelllang = [ | ||
"en_us" | ||
"programming" | ||
]; | ||
}; | ||
} |