From bd9d08eaeb35b749bfb334ad7b39d78dd18a3c51 Mon Sep 17 00:00:00 2001 From: Jay Patel <36803168+jay-babu@users.noreply.github.com> Date: Sun, 16 Apr 2023 12:09:53 -0400 Subject: [PATCH] feat(syntax): add vim-cool --- lua/astrocommunity/syntax/vim-cool/README.md | 6 ++++++ lua/astrocommunity/syntax/vim-cool/vim-cool.lua | 4 ++++ 2 files changed, 10 insertions(+) create mode 100644 lua/astrocommunity/syntax/vim-cool/README.md create mode 100644 lua/astrocommunity/syntax/vim-cool/vim-cool.lua diff --git a/lua/astrocommunity/syntax/vim-cool/README.md b/lua/astrocommunity/syntax/vim-cool/README.md new file mode 100644 index 000000000..964698f8f --- /dev/null +++ b/lua/astrocommunity/syntax/vim-cool/README.md @@ -0,0 +1,6 @@ +# vim-cool + +**Repository:** https://github.com/romainl/vim-cool + +Vim-cool disables search highlighting when you are done searching and re-enables it when you search again. That's it. No more `:noh`, no more `/sytdstdrsid`, and no more dodgy `` mappings. + diff --git a/lua/astrocommunity/syntax/vim-cool/vim-cool.lua b/lua/astrocommunity/syntax/vim-cool/vim-cool.lua new file mode 100644 index 000000000..474123252 --- /dev/null +++ b/lua/astrocommunity/syntax/vim-cool/vim-cool.lua @@ -0,0 +1,4 @@ +return { + "romainl/vim-cool", + event = "User AstroFile", +}