summaryrefslogtreecommitdiff
path: root/ar/.config/TheSiahxyz/lua
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-01-15 02:40:40 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-01-15 02:40:40 +0900
commit816d64b0de182fcdfe5cfadf2356301cfb66bb31 (patch)
tree3636a9adc0b305cf46afd65e744b7ce0e4467ccd /ar/.config/TheSiahxyz/lua
parent70d01bb91cad1eafd6b72741198b3e04b999c290 (diff)
modified plugins/image.lua
Diffstat (limited to 'ar/.config/TheSiahxyz/lua')
-rw-r--r--ar/.config/TheSiahxyz/lua/TheSiahxyz/plugins/image.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/ar/.config/TheSiahxyz/lua/TheSiahxyz/plugins/image.lua b/ar/.config/TheSiahxyz/lua/TheSiahxyz/plugins/image.lua
index a4f126f..81fa28b 100644
--- a/ar/.config/TheSiahxyz/lua/TheSiahxyz/plugins/image.lua
+++ b/ar/.config/TheSiahxyz/lua/TheSiahxyz/plugins/image.lua
@@ -64,9 +64,9 @@ return {
local absolute_image_path = current_file_path .. "/" .. image_path
-- Check if the image exists in the current path
if not file_exists(absolute_image_path) then
- -- If not found, search ../Screenshots/
+ -- If not found, search ../screenshots/
local fallback_path = vim.fn.fnamemodify(current_file_path, ":h")
- .. "/Screenshots/"
+ .. "/screenshots/"
.. image_path
if file_exists(fallback_path) then
absolute_image_path = fallback_path