nixvim!
This commit is contained in:
parent
1ae2d7cc6a
commit
6198767e5b
47 changed files with 2430 additions and 108 deletions
20
modules/editors/nixvim/plug/ui/btw.nix
Normal file
20
modules/editors/nixvim/plug/ui/btw.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{pkgs, ...}: {
|
||||
extraPlugins = with pkgs.vimUtils; [
|
||||
(buildVimPlugin {
|
||||
pname = "btw.nvim";
|
||||
version = "2024-04-36";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "letieu";
|
||||
repo = "btw.nvim";
|
||||
rev = "47f6419e90d3383987fd06e8f3e06a4bc032ac83";
|
||||
hash = "sha256-91DZUfa4FBvXnkcNHdllr82Dr1Ie+MGVD3ibwkqo04c=";
|
||||
};
|
||||
})
|
||||
];
|
||||
|
||||
extraConfigLua = ''
|
||||
require('btw').setup({
|
||||
text = "I use Neovim (and NixOS, BTW)",
|
||||
})
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue