minor fixes

This commit is contained in:
js0ny 2025-04-11 19:35:39 +00:00
parent 5ddef67714
commit f1186d84f7
5 changed files with 42 additions and 10 deletions

View file

@ -249,5 +249,6 @@
(org-get-heading t t t t)
effort))))))
(setq diary-file "~/.local/js0ny/diary")
(provide 'init-org)

View file

@ -2,10 +2,13 @@
-- If current session is not spawn by neovide, do not load image.nvim
-- neovide did not support image viewer yet
-- https://github.com/neovide/neovide/issues/2088
-- Disable on: Neovide, alacritty and windows
if vim.g.neovide then
return {}
elseif vim.env.TERM_PROGRAM == "alacritty" then
return {}
elseif vim.loop.os_uname().sysname:lower() == "windows_nt" then
return {}
else
return {
"3rd/image.nvim",