dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

commit 5619271060851a687fa098a7e6fea655a9beb277
parent 9a128c7b399a64f9ab7eb1c743e63c2e95fbee6f
Author: pyratebeard <root@pyratebeard.net>
Date:   Fri,  5 Sep 2025 12:17:57 +0100

feat(neovim): telescope keymap to open browser in cwd

Diffstat:
Mneovim/.config/nvim/init.lua | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/neovim/.config/nvim/init.lua b/neovim/.config/nvim/init.lua @@ -161,6 +161,10 @@ r.noremap("n", "<leader>sw", ":set wrap<cr>:Sp<cr>", "wrap and toggle spell chec f.cmd("Chmodx", "!chmod a+x %", { desc = "make current buffer executable" }) r.noremap("n", "<leader>x", ":Chmodx<cr>", "chmod +x buffer") +-- telescope keymap +-- https://github.com/helix-editor/helix/discussions/11537 +vim.keymap.set("n", "<space>fb", ":Telescope file_browser path=%:p:h select_buffer=true<CR>") + -- -- vnoremap <silent> <leader>y :w !xsel -i -b<CR> -- nnoremap <silent> <leader>y V:w !xsel -i -b<CR>