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"; };