1
revolver.nvim/plugin/hflip.lua

6 lines
149 B
Lua
Raw Normal View History

2022-10-22 03:13:40 +00:00
if not vim.g.hflip then
local hflip = require('hflip')
vim.api.nvim_create_user_command('HFlip', hflip.hflip, {})
vim.g.hflip = true
end