This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
opdavies.nvim/after/plugin/treesj.lua
Oliver Davies 779687182c Remove mini.splitjoin
I already have `treesj` which works better for PHP and Nix compared to
the `mini.splitjoin`.
2024-04-02 01:20:37 +01:00

11 lines
170 B
Lua

local tsj = require "treesj"
tsj.setup {
use_default_keymaps = false,
}
local nmap = require "opdavies.keymap".nmap
nmap { "gJ", tsj.join }
nmap { "gS", tsj.split }