Skip to content

Commit

Permalink
fix: true-zen mappings (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-babu authored Jun 4, 2023
1 parent 3859600 commit c0d5984
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions lua/astrocommunity/editing-support/true-zen-nvim/true-zen-nvim.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,18 @@ return {
})
end,
keys = {
{ "<leader>zf", require("true-zen").focus },
{ "<leader>zm", require("true-zen").minimalist },
{ "<leader>za", require("true-zen").ataraxis },
{
"<leader>zf",
function() require("true-zen").focus() end,
},
{
"<leader>zm",
function() require("true-zen").minimalist() end,
},
{
"<leader>za",
function() require("true-zen").ataraxis() end,
},
{
"<leader>zn",
function()
Expand Down

0 comments on commit c0d5984

Please sign in to comment.