From 9150e7954b1f2593d48d1e890715cff1ce69a855 Mon Sep 17 00:00:00 2001 From: Tovi Jaeschke-Rogers Date: Fri, 14 Jun 2024 20:56:56 +0930 Subject: [PATCH] feat: add nvim-ts-context-commentstring --- .../nvim/lua/tovi/plugins/nvim-ts-context-commentstring.lua | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .config/nvim/lua/tovi/plugins/nvim-ts-context-commentstring.lua diff --git a/.config/nvim/lua/tovi/plugins/nvim-ts-context-commentstring.lua b/.config/nvim/lua/tovi/plugins/nvim-ts-context-commentstring.lua new file mode 100644 index 0000000..038cec2 --- /dev/null +++ b/.config/nvim/lua/tovi/plugins/nvim-ts-context-commentstring.lua @@ -0,0 +1,5 @@ +return { + 'JoosepAlviste/nvim-ts-context-commentstring', + event = { 'BufRead', 'BufNewFile' }, + config = true, +}