From 2fb9c986ce668f71cdbc4055d0704c548fb854ff Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Tue, 26 Aug 2025 19:07:59 +0900 Subject: updates --- ar/.config/TheSiahxyz/lua/TheSiahxyz/core/keymaps.lua | 2 +- ar/.config/TheSiahxyz/lua/TheSiahxyz/plugins/ssh.lua | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 ar/.config/TheSiahxyz/lua/TheSiahxyz/plugins/ssh.lua (limited to 'ar') diff --git a/ar/.config/TheSiahxyz/lua/TheSiahxyz/core/keymaps.lua b/ar/.config/TheSiahxyz/lua/TheSiahxyz/core/keymaps.lua index 500abf0..5b461ab 100644 --- a/ar/.config/TheSiahxyz/lua/TheSiahxyz/core/keymaps.lua +++ b/ar/.config/TheSiahxyz/lua/TheSiahxyz/core/keymaps.lua @@ -68,7 +68,7 @@ vim.keymap.set("n", "gcD", function() vim.cmd("cd " .. vim.fn.fnameescape(vim.fn.fnamemodify(realpath, ":h"))) vim.cmd("pwd") end, { desc = "Go to real path of current file" }) -vim.keymap.set("n", "gc.", ":cd ..:pwd", { desc = "Go to current file path" }) +vim.keymap.set("n", "gc.", ":cd ..:pwd", { desc = "Go to parent file path" }) -- Check health vim.keymap.set("n", "ch", ":checkhealth", { desc = "Check neovim health" }) diff --git a/ar/.config/TheSiahxyz/lua/TheSiahxyz/plugins/ssh.lua b/ar/.config/TheSiahxyz/lua/TheSiahxyz/plugins/ssh.lua new file mode 100644 index 0000000..20cead1 --- /dev/null +++ b/ar/.config/TheSiahxyz/lua/TheSiahxyz/plugins/ssh.lua @@ -0,0 +1,10 @@ +return { + "amitds1997/remote-nvim.nvim", + version = "*", -- Pin to GitHub releases + dependencies = { + "nvim-lua/plenary.nvim", -- For standard functions + "MunifTanjim/nui.nvim", -- To build the plugin UI + "nvim-telescope/telescope.nvim", -- For picking b/w different remote methods + }, + config = true, +} -- cgit v1.2.3