aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins.lua
diff options
context:
space:
mode:
authorJean-Pierre Appel <jeanpierre.appel01@gmail.com>2023-08-27 14:27:32 -0400
committerJean-Pierre Appel <jeanpierre.appel01@gmail.com>2023-08-27 14:27:32 -0400
commiteffbea32afb26f365d81a5797b9c24bc6fd1aa81 (patch)
treefdce74c417033c61bf0bfc423616e6e062c319fa /nvim/lua/plugins.lua
parentf1d1edce5cc401147a31369f8d880da0bf3986bd (diff)
parent313df8e85254a3ae848cad3cfa176a58594b3fb7 (diff)
Merge branch 'main' into nvim-cmp
Diffstat (limited to 'nvim/lua/plugins.lua')
-rw-r--r--nvim/lua/plugins.lua103
1 files changed, 0 insertions, 103 deletions
diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua
deleted file mode 100644
index 25fb5dd..0000000
--- a/nvim/lua/plugins.lua
+++ /dev/null
@@ -1,103 +0,0 @@
-return require('packer').startup(function(use)
- use 'wbthomason/packer.nvim' -- package manager
- use 'neovim/nvim-lspconfig' -- config for lsp
-
- -- common dependacy
- use "nvim-lua/plenary.nvim"
-
- -- git
- use 'tpope/vim-fugitive' -- close to native git command integrations
-
-
- use {
- 'nvim-telescope/telescope.nvim', tag = '0.1.0', -- fuzzy finder
- requires = { {'nvim-lua/plenary.nvim'}, {'nvim-tree/nvim-web-devicons'} }
- }
-
- -- completion
- -- TODO:config completion and setup binds
- use 'hrsh7th/nvim-cmp'
- use {
- 'hrsh7th/cmp-nvim-lsp',
- requires = { {'hrsh7th/nvim-cmp'}, {'neovim/nvim-lspconfig'} }
- }
- use {
- 'hrsh7th/cmp-path',
- requires = { 'hrsh7th/nvim-cmp' }
- }
- use {
- 'kdheepak/cmp-latex-symbols',
- requires = { 'hrsh7th/nvim-cmp' }
- }
- use {
- 'hrsh7th/cmp-emoji',
- requires = { 'hrsh7th/nvim-cmp' }
- }
- use {
- 'hrsh7th/cmp-path',
- requires = { 'hrsh7th/nvim-cmp' }
- }
- use {
- 'L3MON4D3/LuaSnip',
- tag = "v1.*",
- run = "make install_jsregexp"
- }
- use {
- 'saadparwaiz1/cmp_luasnip',
- requires = { {'hrsh7th/nvim-cmp'}, {'L3MON4D3/LuaSnip'}}
- }
-
-
- -- pandoc
- use 'vim-pandoc/vim-pandoc'
- use 'vim-pandoc/vim-pandoc-syntax'
-
- -- tree sitter
- use {
- 'nvim-treesitter/nvim-treesitter',
- run = ':TSUpdate'
- }
-
- use {
- 'numToStr/Comment.nvim', -- faster commentting
- config = function()
- require('Comment').setup()
- end
- }
-
- use 'habamax/vim-godot'
-
- -- TODO: configure tree-sitter to color current indentation level
- use {
- 'lukas-reineke/indent-blankline.nvim', -- show indentation levels
- config = function()
- require('indent_blankline').setup {
- show_current_context = true,
- show_current_context_start = true
- }
- end
- }
-
- -- statusline/bufferline
- use {
- 'nvim-lualine/lualine.nvim', -- lualine
- requires = { 'nvim-tree/nvim-web-devicons', opt = true },
- config = function()
- require('lualine').setup()
- end
- }
- use {
- 'akinsho/bufferline.nvim', -- bufferline
- tag = "v3.*",
- requires = 'nvim-tree/nvim-web-devicons',
- config = function()
- require('bufferline').setup()
- end
- }
-
-
- -- cosmetic
- use { "catppuccin/nvim", as = "catppuccin" } -- colorscheme
- -- use 'kyazdani42/nvim-web-devicons'
-
-end)