From 6a8082893dcbb63f2a39ba0945b22d1cb792bffc Mon Sep 17 00:00:00 2001 From: noe Date: Fri, 22 Dec 2023 16:09:54 -0500 Subject: [PATCH] vim keybinds --- home-manager/features/vim.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/home-manager/features/vim.nix b/home-manager/features/vim.nix index 46f52af..d44408e 100644 --- a/home-manager/features/vim.nix +++ b/home-manager/features/vim.nix @@ -17,8 +17,17 @@ ]; keymaps = [ + # Simple save Ctrl + S + { action = "w"; key = ""; options.silent = true; } + + # Vsplit + { action = "vsplit"; key = ""; options.silent = true; } + + # [H]split + { action = "split"; key = ""; options.silent = true; } + # Toggleterm Ctrl + ` - { action = "ToggleTerm"; key = ""; options.silent = true; } + { action = "ToggleTerm"; key = ""; options.silent = true; } ]; plugins = {