diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-02-27 21:12:53 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-02-27 21:12:53 +0100 |
commit | 6d9c18cc27acc2c9f00855e00d004cd020f8ea59 (patch) | |
tree | d1b0098c7f11527b0344a58bd1fc565d4008c9c7 /fnl | |
parent | dd02e81da7f59dff89d4fc4ef803a1c19a93d73d (diff) |
Add vim-slash again
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/plugins/vim-slash.fnl | 6 | ||||
-rw-r--r-- | fnl/settings/keymaps.fnl | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/fnl/plugins/vim-slash.fnl b/fnl/plugins/vim-slash.fnl new file mode 100644 index 0000000..e638d73 --- /dev/null +++ b/fnl/plugins/vim-slash.fnl @@ -0,0 +1,6 @@ +;; Provides a set of mappings for enhancing in-buffer search experience. + +(fn config [] + (vim.cmd "noremap <plug>(slash-after) zz")) + +{1 :junegunn/vim-slash :event :BufReadPost : config} diff --git a/fnl/settings/keymaps.fnl b/fnl/settings/keymaps.fnl index d61ef8b..3f800c6 100644 --- a/fnl/settings/keymaps.fnl +++ b/fnl/settings/keymaps.fnl @@ -36,8 +36,6 @@ ;; Jump half a page and centralize the view [:n :<c-d> :<c-d>zz {}] [:n :<c-u> :<c-u>zz {}] - ;; Remove highlighted search - [:n :<c-m> :<cmd>nohlsearch<CR> {}] ;; Close window [:n :Q "<cmd>:q<CR>" {}] ;; Force refresh |