diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-12-28 18:29:10 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-12-28 18:29:10 +0530 |
commit | 2479ddf6d7abb209ef7a34cc94e73184b56c2c56 (patch) | |
tree | 92ea5dafa457083f0728bcf449f9cae3823bda54 /lua/plugins/productivity.lua | |
parent | 23edcf36f28ea1ccd35c179ac43e1b6f9f2e9ac2 (diff) |
nvim: plugins: moving to lazy.nvim style plugin declaration
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Diffstat (limited to 'lua/plugins/productivity.lua')
-rw-r--r-- | lua/plugins/productivity.lua | 19 |
1 files changed, 19 insertions, 0 deletions
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" }, +} |