17 lines
341 B
Lua
17 lines
341 B
Lua
local iron = require "iron.core"
|
|
iron.setup({
|
|
config = {
|
|
should_map_plug = false,
|
|
scratch_repl = true,
|
|
repl_definition = {
|
|
python = {
|
|
command = { "ipython" },
|
|
format = require("iron.fts.common").bracketed_paste,
|
|
},
|
|
},
|
|
},
|
|
keymaps = {
|
|
send_motion = "ctr",
|
|
visual_send = "ctr",
|
|
},
|
|
})
|