This repository has been archived on 2025-01-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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

10 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 }