Refined vim-slime config

This commit is contained in:
dpearre 2024-10-07 21:53:05 -07:00
parent 31bd2533a2
commit 33b7e9735f
1 changed files with 8 additions and 0 deletions

View File

@ -285,6 +285,14 @@ require('lazy').setup({
'tpope/vim-fugitive', -- git integration 'tpope/vim-fugitive', -- git integration
'jpalardy/vim-slime', -- for piping code into external service like a REPL 'jpalardy/vim-slime', -- for piping code into external service like a REPL
'mbbill/undotree', -- recommended undo history system 'mbbill/undotree', -- recommended undo history system
{
'jpalardy/vim-slime', -- for piping code into external service like a REPL
config = function()
vim.g.slime_target = 'tmux'
vim.g.slime_cell_delimiter = '# %%'
vim.g.slime_bracketed_paste = 1
end,
},
{ {
'nvim-tree/nvim-tree.lua', 'nvim-tree/nvim-tree.lua',
requires = { requires = {