From a05b6e401c09b7d5eadd15e39dc97398bc3cf85d Mon Sep 17 00:00:00 2001 From: jasmine Date: Mon, 19 May 2025 11:25:33 +0800 Subject: [PATCH] change modifier key --- config/plugins/editor/smart-splits.nix | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/config/plugins/editor/smart-splits.nix b/config/plugins/editor/smart-splits.nix index 46aeb28..c87d280 100644 --- a/config/plugins/editor/smart-splits.nix +++ b/config/plugins/editor/smart-splits.nix @@ -11,7 +11,7 @@ # moving between splits { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').move_cursor_left"; }; @@ -19,7 +19,7 @@ { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').move_cursor_down"; }; @@ -27,7 +27,7 @@ { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').move_cursor_up"; }; @@ -35,7 +35,7 @@ { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').move_cursor_right"; }; @@ -44,7 +44,7 @@ # swapping buffers between windows { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').swap_buf_left"; }; @@ -52,7 +52,7 @@ { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').swap_buf_down"; }; @@ -60,7 +60,7 @@ { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').swap_buf_up"; }; @@ -68,7 +68,7 @@ { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').swap_buf_right"; }; @@ -77,7 +77,7 @@ # resizing splits { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').resize_left"; }; @@ -85,7 +85,7 @@ { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').resize_down"; }; @@ -93,7 +93,7 @@ { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').resize_up"; }; @@ -101,7 +101,7 @@ { mode = ["n"]; - key = ""; + key = ""; action = { __raw = "require('smart-splits').resize_right"; };