add vim-textobj-hydrogen + iron.vim ...

This commit is contained in:
dth@taiga.ai 2023-02-18 22:01:59 +01:00
parent e0e8b51af6
commit 5748cb3fea
3 changed files with 34 additions and 0 deletions

17
.config/nvim/plugins.lua Normal file
View file

@ -0,0 +1,17 @@
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",
},
})