Refined vim-slime config
This commit is contained in:
parent
31bd2533a2
commit
33b7e9735f
8
init.lua
8
init.lua
|
@ -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 = {
|
||||||
|
|
Loading…
Reference in New Issue