diff options
author | listout <listout@protonmail.com> | 2022-08-02 01:10:05 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-09-01 16:26:25 +0530 |
commit | 18edf9861d1b38591b51b42465b224d77736db04 (patch) | |
tree | d3c47be47a0bb532444556f307a33465f9cf79fe /lua/plugins/plugins.lua | |
parent | b5d497da359e7d5224e0462bd5b55c3d1caefd26 (diff) |
nvim: moving init to lua
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'lua/plugins/plugins.lua')
-rw-r--r-- | lua/plugins/plugins.lua | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/lua/plugins/plugins.lua b/lua/plugins/plugins.lua new file mode 100644 index 0000000..c78ffc1 --- /dev/null +++ b/lua/plugins/plugins.lua @@ -0,0 +1,38 @@ +-- This file can be loaded by calling `lua require('plugins')` from your init.vim + +-- Only required if you have packer configured as `opt` +vim.cmd [[packadd packer.nvim]] + +return require('packer').startup(function(use) + -- Packer can manage itself + use 'wbthomason/packer.nvim' + + -- Nord color scheme + use 'shaunsingh/nord.nvim' + + -- Completion + use {'neoclide/coc.nvim', branch = 'release'} + + + use {'ap/vim-css-color'} + + use {'jiangmiao/auto-pairs'} + use {'preservim/nerdcommenter'} + use { 'dhruvasagar/vim-table-mode', ft = {'markdown', 'markdown.pandoc'} } + + use { 'vim-pandoc/vim-pandoc-syntax', ft = { 'markdown', 'markdown.pandoc' } } + use { 'lervag/vimtex', ft = { 'tex' } } + + use { 'junegunn/fzf', run = ":call fzf#install()" } + use { 'junegunn/fzf.vim' } + + use { 'honza/vim-snippets' } + use { 'SirVer/ultisnips' } + + use {'tpope/vim-surround'} + use {'junegunn/vim-easy-align'} + + + use { 'tpope/vim-fugitive', ft = {'cpp', 'c'} } + use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' } +end) |