Skip to content

Commit

Permalink
feat: zen-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
willruggiano committed Dec 15, 2023
1 parent d02c5c2 commit 4123a0c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
6 changes: 6 additions & 0 deletions nix/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,12 @@
"rev": "679f348dc90d80ff9ba0e7c470c40a4d038dcecf",
"type": "git"
},
"zen-mode.nvim": {
"branch": "main",
"repo": "git@github.com:folke/zen-mode.nvim",
"rev": "50e2e2a36cc97847d9ab3b1a3555ba2ef6839b50",
"type": "git"
},
"zk-nvim": {
"branch": "main",
"repo": "git@github.com:mickael-menu/zk-nvim",
Expand Down
17 changes: 17 additions & 0 deletions plugins/spec.nix
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,23 @@ in rec {
};
};

zen-mode = {
src = sources."zen-mode.nvim";
config = {
plugins = {
gitsigns.enabled = true;
twilight.enabled = false;
};
window = {
options = {
number = false;
relativenumber = false;
signcolumn = "yes";
};
};
};
};

zk = {
src = sources.zk-nvim;
config = ./zk.lua;
Expand Down

0 comments on commit 4123a0c

Please sign in to comment.