Org mode / quality of life stuff

This commit is contained in:
agryphus 2023-09-25 17:06:11 -04:00
parent 332ff948ed
commit 150e21702e
12 changed files with 238 additions and 3 deletions

8
after/plugin/lf.lua Normal file
View file

@ -0,0 +1,8 @@
vim.keymap.set("n", "<leader>e", function ()
vim.g.lf_command_override = string.format('LF_OVERRIDE_X=%d LF_OVERRIDE_Y=%d lf',
math.floor(vim.go.columns * 0.5),
math.ceil(vim.go.lines * 0.25)
)
vim.cmd("Lf")
end)