From 1299d7b040a3e199f546680ac5b05c212c3b33ba Mon Sep 17 00:00:00 2001 From: Edward Litherland-Smith Date: Wed, 14 Sep 2022 15:29:31 +0100 Subject: [PATCH] Switch to Python3_fifo for REPL behavior --- init.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index afe0e4e8..abaaac13 100644 --- a/init.lua +++ b/init.lua @@ -33,8 +33,9 @@ require('telescope').load_extension('aerial') -- SnipRun config require('sniprun').setup{ - repl_enable = {"Python3_original"} + selected_interpreters = { 'Python3_fifo' }, + repl_enable = {'Python3_fifo'}, display = { "NvimNotify" - } + }, }