update
This commit is contained in:
parent
71f405e633
commit
1f35859f2c
@ -1 +1,30 @@
|
||||
{ programs.nixvim.plugins.zen-mode = { enable = true; }; }
|
||||
{
|
||||
programs.nixvim.plugins.zen-mode = {
|
||||
enable = true;
|
||||
settings = {
|
||||
on_open = ''
|
||||
function()
|
||||
require("gitsigns.actions").toggle_current_line_blame()
|
||||
vim.opt.relativenumber = false
|
||||
vim.opt.signcolumn = "no"
|
||||
end
|
||||
'';
|
||||
plugins = {
|
||||
gitsigns = { enabled = true; };
|
||||
options = {
|
||||
enabled = true;
|
||||
ruler = false;
|
||||
showcmd = false;
|
||||
};
|
||||
tmux = { enabled = false; };
|
||||
twilight = { enabled = false; };
|
||||
};
|
||||
window = {
|
||||
backdrop = 0.95;
|
||||
height = 1;
|
||||
options = { signcolumn = "no"; };
|
||||
width = 0.8;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user