diff options
| author | Jean-Pierre Appel <jeanpierre.appel01@gmail.com> | 2023-08-27 14:27:32 -0400 |
|---|---|---|
| committer | Jean-Pierre Appel <jeanpierre.appel01@gmail.com> | 2023-08-27 14:27:32 -0400 |
| commit | effbea32afb26f365d81a5797b9c24bc6fd1aa81 (patch) | |
| tree | fdce74c417033c61bf0bfc423616e6e062c319fa /nvim/lua/plugins/init.lua | |
| parent | f1d1edce5cc401147a31369f8d880da0bf3986bd (diff) | |
| parent | 313df8e85254a3ae848cad3cfa176a58594b3fb7 (diff) | |
Merge branch 'main' into nvim-cmp
Diffstat (limited to 'nvim/lua/plugins/init.lua')
| -rw-r--r-- | nvim/lua/plugins/init.lua | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/nvim/lua/plugins/init.lua b/nvim/lua/plugins/init.lua new file mode 100644 index 0000000..8628e2e --- /dev/null +++ b/nvim/lua/plugins/init.lua @@ -0,0 +1,40 @@ +return { + + -- common dependacy + "nvim-lua/plenary.nvim", + + -- git + 'tpope/vim-fugitive', -- close to native git command integrations + + + -- completion + -- TODO:config completion and setup binds + 'hrsh7th/nvim-cmp', + { + 'hrsh7th/cmp-nvim-lsp', + dependencies = { {'hrsh7th/nvim-cmp'}, {'neovim/nvim-lspconfig'} } + }, + { + 'hrsh7th/cmp-path', + dependencies = { 'hrsh7th/nvim-cmp' } + }, + { + 'kdheepak/cmp-latex-symbols', + dependencies = { 'hrsh7th/nvim-cmp' } + }, + + + + + { + 'numToStr/Comment.nvim', -- faster commentting + lazy = false, + -- config = function() + -- require('Comment').setup() + -- end + }, + + -- cosmetic + -- 'kyazdani42/nvim-web-devicons', + +} |
