From aecb8c8cab4583d656b65b46ede76b4c5e34359c Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Sun, 10 Apr 2022 13:08:34 +0200 Subject: nvim: REPL + Guix plugins --- nvim/nvim/init.vim | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/nvim/nvim/init.vim b/nvim/nvim/init.vim index 8607631..f8a0938 100644 --- a/nvim/nvim/init.vim +++ b/nvim/nvim/init.vim @@ -40,6 +40,12 @@ Plugin 'powerman/vim-plugin-ruscmd.git' " Recutils support Plugin 'zaid/vim-rec' +" Guix +Plugin 'https://gitlab.com/Efraim/guix.vim' + +" Repl +Plugin 'https://gitlab.com/HiPhish/repl.nvim.git' + " Common-Lisp " Plugin 'vlime/vlime', {'rtp': 'vim/'} @@ -185,6 +191,17 @@ highlight ColorColumn ctermbg=DarkGrey guibg=#262626 :tnoremap """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +" REPL: repl.vim: +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +" Send the text of a motion to the REPL +nmap rs (ReplSend) +" Send the current line to the REPL +nmap rss (ReplSendLine) +nmap rs_ (ReplSendLine) +" Send the selected text to the REPL +vmap rs (ReplSend) +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + " Different config for each filetype filetype plugin on -- cgit v1.2.3