diff --git a/lua/keymaps/normal-keymaps.lua b/lua/keymaps/normal-keymaps.lua index 110c74e..66513fa 100644 --- a/lua/keymaps/normal-keymaps.lua +++ b/lua/keymaps/normal-keymaps.lua @@ -12,12 +12,12 @@ vim.keymap.set("n", "", function() local cwd = vim.fn.expand("%:p:h") local path = vim.fn.expand("%:p") if string.match(cwd, "oil") then - vim.cmd("!dolphin " .. " . ") + vim.cmd("!open " .. " . ") else - vim.cmd("!dolphin --select" .. " " .. path) + vim.cmd("!open " .. path) end end, { - desc = "Open the current working directory in the file explorer for windows" + desc = "Open the current working directory in the file explorer" }) vim.api.nvim_set_keymap("n", "", "m .+1==", {