summaryrefslogtreecommitdiff
path: root/ar/.config/LazyVim/lua/plugins/treesj.lua
diff options
context:
space:
mode:
Diffstat (limited to 'ar/.config/LazyVim/lua/plugins/treesj.lua')
-rw-r--r--ar/.config/LazyVim/lua/plugins/treesj.lua32
1 files changed, 0 insertions, 32 deletions
diff --git a/ar/.config/LazyVim/lua/plugins/treesj.lua b/ar/.config/LazyVim/lua/plugins/treesj.lua
deleted file mode 100644
index 9cfb3ff..0000000
--- a/ar/.config/LazyVim/lua/plugins/treesj.lua
+++ /dev/null
@@ -1,32 +0,0 @@
-return {
- "Wansmer/treesj",
- dependencies = { "nvim-treesitter/nvim-treesitter" },
- config = function()
- require("treesj").setup({
- ---@type boolean Use default keymaps (<space>m - toggle, <space>j - join, <space>s - split)
- use_default_keymaps = false,
- ---@type boolean Node with syntax error will not be formatted
- check_syntax_error = true,
- ---If line after join will be longer than max value,
- ---@type number If line after join will be longer than max value, node will not be formatted
- max_join_length = 300,
- ---Cursor behavior:
- ---hold - cursor follows the node/place on which it was called
- ---start - cursor jumps to the first symbol of the node being formatted
- ---end - cursor jumps to the last symbol of the node being formatted
- ---@type 'hold'|'start'|'end'
- cursor_behavior = "hold",
- ---@type boolean Notify about possible problems or not
- notify = true,
- ---@type boolean Use `dot` for repeat action
- dot_repeat = true,
- ---@type nil|function Callback for treesj error handler. func (err_text, level, ...other_text)
- on_error = nil,
- ---@type table Presets for languages
- -- langs = {}, -- See the default presets in lua/treesj/langs
- })
- end,
- keys = {
- { "<leader>j", "<cmd>TSJToggle<cr>", desc = "Toggle Treesj" },
- },
-}