From fa1a1f4803f96d18b6df10b4380537207bfb65d9 Mon Sep 17 00:00:00 2001 From: Salar Rahmanian Date: Sun, 23 Feb 2025 21:38:34 -0800 Subject: [PATCH] remove smart-splits --- lua/plugins/smart-splits.lua | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 lua/plugins/smart-splits.lua diff --git a/lua/plugins/smart-splits.lua b/lua/plugins/smart-splits.lua deleted file mode 100644 index 7a48e84..0000000 --- a/lua/plugins/smart-splits.lua +++ /dev/null @@ -1,26 +0,0 @@ -return { - "mrjones2014/smart-splits.nvim", - lazy = false, - keys = { - -- resizing splits - { "", ":lua require('smart-splits').resize_left()", desc = "smart split: resize left" }, - { "", ":lua require('smart-splits').resize_down()", desc = "smart split: resize down" }, - { "", ":lua require('smart-splits').resize_up()", desc = "smart split: resize up" }, - { "", ":lua require('smart-splits').resize_right()", desc = "smart split: resize right" }, - -- moving between splits - { "", ":lua require('smart-splits').move_cursor_left()", desc = "smart split: move cursor left" }, - { "", ":lua require('smart-splits').move_cursor_down()", desc = "smart split: move cursor up" }, - { "", ":lua require('smart-splits').move_cursor_up()", desc = "smart split: move cursor up" }, - { "", ":lua require('smart-splits').move_cursor_right()", desc = "smart split: move cursor right" }, - { - "", - ":lua require('smart-splits').move_cursor_previous()", - desc = "smart split: move cursor to previous", - }, - -- swapping buffers between windows - { "a", ":lua require('smart-splits').swap_buf_left()", desc = "smart split: swap left" }, - { "o", ":lua require('smart-splits').swap_buf_down()", desc = "smart split: swap down" }, - { "e", ":lua require('smart-splits').swap_buf_up()", desc = "smart split: swap up" }, - { "u", ":lua require('smart-splits').swap_buf_right()", desc = "smart split: swap right" }, - }, -}