Update
This commit is contained in:
parent
0509eba07f
commit
87ee1c7738
@ -15,5 +15,10 @@
|
|||||||
action = "<cmd>set linebreak!<cr>";
|
action = "<cmd>set linebreak!<cr>";
|
||||||
options.desc = "Toggle linebreak";
|
options.desc = "Toggle linebreak";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
key = "<leader>z";
|
||||||
|
action = "<cmd>ZenMode<cr>";
|
||||||
|
options.desc = "ZenMode";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
trouble.enable = true;
|
trouble.enable = true;
|
||||||
which-key.enable = true;
|
which-key.enable = true;
|
||||||
headlines.enable = true;
|
headlines.enable = true;
|
||||||
tagbar.enable = true;
|
# tagbar.enable = true;
|
||||||
};
|
};
|
||||||
keymaps = [{
|
keymaps = [{
|
||||||
key = "<leader>t";
|
key = "<leader>t";
|
||||||
|
@ -7,6 +7,8 @@
|
|||||||
require("gitsigns.actions").toggle_current_line_blame()
|
require("gitsigns.actions").toggle_current_line_blame()
|
||||||
vim.opt.relativenumber = false
|
vim.opt.relativenumber = false
|
||||||
vim.opt.signcolumn = "no"
|
vim.opt.signcolumn = "no"
|
||||||
|
vim.opt.wrap = true
|
||||||
|
vim.opt.linebreak = true
|
||||||
end
|
end
|
||||||
'';
|
'';
|
||||||
plugins = {
|
plugins = {
|
||||||
|
Loading…
Reference in New Issue
Block a user