From 743eb68aa2a2b231aa304b563fe54ce069966b29 Mon Sep 17 00:00:00 2001 From: Brian Hicks Date: Mon, 23 Dec 2019 12:10:54 -0600 Subject: [PATCH] move options around for clarity --- dotfiles/kakoune.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dotfiles/kakoune.nix b/dotfiles/kakoune.nix index 3618022..4aaae4a 100644 --- a/dotfiles/kakoune.nix +++ b/dotfiles/kakoune.nix @@ -52,13 +52,11 @@ in { hooks = [ { + commands = "auto-pairs-enable"; name = "WinCreate"; option = ".*"; - commands = "auto-pairs-enable"; } { - name = "WinCreate"; - option = ".*"; commands = '' declare-user-mode surround map global surround s ':surround' -docstring 'Surround' @@ -67,6 +65,8 @@ in { map global surround t ':select-surrounding-tag' -docstring 'Select tag' map global user s ':enter-user-mode surround' -docstring 'Surround' ''; + name = "WinCreate"; + option = ".*"; } ]; };