mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-13 14:21:52 +02:00
plugins/no-neck-pain: init
This commit is contained in:
parent
3ff2d93e88
commit
5f897aaed0
2 changed files with 106 additions and 0 deletions
30
plugins/by-name/no-neck-pain/default.nix
Normal file
30
plugins/by-name/no-neck-pain/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib, ... }:
|
||||
lib.nixvim.plugins.mkNeovimPlugin {
|
||||
name = "no-neck-pain";
|
||||
maintainers = [ lib.maintainers.ChelseaWilkinson ];
|
||||
packPathName = "no-neck-pain.nvim";
|
||||
package = "no-neck-pain-nvim";
|
||||
description = "☕ Dead simple yet super extensible zen mode plugin to protect your neck.";
|
||||
|
||||
settingsExample = {
|
||||
width = 80;
|
||||
autocmds = {
|
||||
enableOnVimEnter = true;
|
||||
skipEnteringNoNeckPainBuffer = true;
|
||||
};
|
||||
buffers = {
|
||||
colors = {
|
||||
background = "catppuccin-frappe";
|
||||
blend = -0.1;
|
||||
};
|
||||
scratchPad = {
|
||||
enabled = true;
|
||||
fileName = "notes";
|
||||
location = "~/";
|
||||
};
|
||||
bo = {
|
||||
filetype = "md";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue