From 2580728e71dbe8949943a4380f15af77539ea37a Mon Sep 17 00:00:00 2001 From: Nicola Belluti Date: Sun, 25 Aug 2024 12:16:07 +0200 Subject: [PATCH] Added tpope's plugind --- .../nvim/lua/plugins/tpope.lua | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 home/private_dot_config/nvim/lua/plugins/tpope.lua diff --git a/home/private_dot_config/nvim/lua/plugins/tpope.lua b/home/private_dot_config/nvim/lua/plugins/tpope.lua new file mode 100644 index 0000000..da884bc --- /dev/null +++ b/home/private_dot_config/nvim/lua/plugins/tpope.lua @@ -0,0 +1,25 @@ +return { + -- Automatically adjust the indenting and much more + { + "tpope/vim-sleuth", + event = { "BufReadPre", "BufNewFile" }, + }, + + -- Increment dates right + { + "tpope/vim-speeddating", + keys = { "", "" }, + }, + + -- Comment lines with 'gc' + { + "tpope/vim-commentary", + keys = { "gc" }, + }, + + -- Check Unicode chars + { + "tpope/vim-characterize", + keys = { "ga" }, + }, +}