From 2479ddf6d7abb209ef7a34cc94e73184b56c2c56 Mon Sep 17 00:00:00 2001 From: Brahmajit Das Date: Sat, 28 Dec 2024 18:29:10 +0530 Subject: nvim: plugins: moving to lazy.nvim style plugin declaration Signed-off-by: Brahmajit Das --- lua/plugins/productivity.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lua/plugins/productivity.lua (limited to 'lua/plugins/productivity.lua') diff --git a/lua/plugins/productivity.lua b/lua/plugins/productivity.lua new file mode 100644 index 0000000..df60d43 --- /dev/null +++ b/lua/plugins/productivity.lua @@ -0,0 +1,19 @@ +return { + { + "windwp/nvim-autopairs", + event = "InsertEnter", + config = true + }, + { "preservim/nerdcommenter" }, + { + "dhruvasagar/vim-table-mode", + ft = { 'markdown', 'markdown.pandoc', 'pandoc' } + }, + { + "junegunn/fzf", + build = ":call fzf#install()" + }, + { "junegunn/fzf.vim" }, + { "tpope/vim-surround" }, + { "junegunn/vim-easy-align" }, +} -- cgit v1.2.3