From c1bec17f77ab5ad2522702849164e04884e1179f Mon Sep 17 00:00:00 2001 From: Jean-Pierre Appel Date: Sat, 26 Aug 2023 21:18:50 -0400 Subject: moved to lazy.nvim, configured lsp --- nvim/lua/plugins/init.lua | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 nvim/lua/plugins/init.lua (limited to 'nvim/lua/plugins/init.lua') 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', + +} -- cgit v1.2.3