aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins/init.lua
diff options
context:
space:
mode:
authorJean-Pierre Appel <jeanpierre.appel01@gmail.com>2023-08-26 21:18:50 -0400
committerJean-Pierre Appel <jeanpierre.appel01@gmail.com>2023-08-26 21:18:50 -0400
commitc1bec17f77ab5ad2522702849164e04884e1179f (patch)
tree8ea565ae10c0179914c59f3c856c4ca5dac28556 /nvim/lua/plugins/init.lua
parentb5a73e484db3094b7729ab856dbe8cdfe68ce9db (diff)
moved to lazy.nvim, configured lsp
Diffstat (limited to 'nvim/lua/plugins/init.lua')
-rw-r--r--nvim/lua/plugins/init.lua40
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',
+
+}