Better organize dependencies

This commit is contained in:
Thomas Avé 2023-07-19 13:47:26 +02:00
parent 72f30bdad8
commit e38c1c3263
2 changed files with 13 additions and 23 deletions

View File

@ -7,7 +7,7 @@
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
"editorconfig.nvim": { "branch": "master", "commit": "5b9e303e1d6f7abfe616ce4cc8d3fffc554790bf" },
"friendly-snippets": { "branch": "main", "commit": "ea84a710262cb2c286d439070bad37d36fd3db25" },
"lazy.nvim": { "branch": "main", "commit": "14d76aac4bd3ff07c1fca074c210f28f766a931e" },
"lazy.nvim": { "branch": "main", "commit": "25beed5e2e935ebc00d7e3eed1dc502df3c40e39" },
"leap.nvim": { "branch": "main", "commit": "7eeeb3ff74ff8cabd583a061492e76c1c6d2bac8" },
"lualine.nvim": { "branch": "master", "commit": "05d78e9fd0cdfb4545974a5aa14b1be95a86e9c9" },
"lush.nvim": { "branch": "main", "commit": "b10ef2bfff0647e701b691019ade3edd5e44eb50" },

View File

@ -13,38 +13,28 @@ end
vim.opt.rtp:prepend(lazypath)
require('lazy').setup({
'mbbill/undotree',
'nvim-tree/nvim-web-devicons',
'airblade/vim-rooter',
"rafamadriz/friendly-snippets",
'ConradIrwin/vim-bracketed-paste',
'Vimjas/vim-python-pep8-indent',
'airblade/vim-rooter',
'cappyzawa/trim.nvim',
'gpanders/editorconfig.nvim',
'ervandew/supertab',
'williamboman/mason.nvim',
'williamboman/mason-lspconfig.nvim',
'ggandor/leap.nvim',
'hrsh7th/cmp-buffer',
'hrsh7th/cmp-cmdline',
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-path',
'hrsh7th/nvim-cmp',
'hrsh7th/vim-vsnip',
'hrsh7th/vim-vsnip-integ',
"rktjmp/lush.nvim",
'gpanders/editorconfig.nvim',
'intrntbrn/awesomewm-vim-tmux-navigator',
'lervag/vimtex',
'neovim/nvim-lspconfig',
'mbbill/undotree',
'numToStr/Comment.nvim',
'vimwiki/vimwiki',
'intrntbrn/awesomewm-vim-tmux-navigator',
'windwp/nvim-autopairs',
{'williamboman/mason-lspconfig.nvim', dependencies = {'williamboman/mason.nvim', 'neovim/nvim-lspconfig'}},
{"folke/trouble.nvim", dependencies = {"nvim-tree/nvim-web-devicons"}},
{"nvim-treesitter/nvim-treesitter", build = ":TSUpdate"},
{'TimUntersberger/neogit', dependencies = {'nvim-lua/plenary.nvim'} },
{'hrsh7th/nvim-cmp', dependencies = {'hrsh7th/cmp-buffer', 'hrsh7th/cmp-cmdline', 'hrsh7th/cmp-nvim-lsp', 'hrsh7th/cmp-path', 'hrsh7th/vim-vsnip', 'hrsh7th/vim-vsnip-integ'}},
{'nvim-lualine/lualine.nvim', dependencies = { 'nvim-tree/nvim-web-devicons', opt = true }},
{'nvim-telescope/telescope-fzf-native.nvim', build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' },
{'nvim-telescope/telescope.nvim', dependencies = {'nvim-lua/plenary.nvim'}},
{"nvim-treesitter/nvim-treesitter", build = ":TSUpdate"},
{"folke/trouble.nvim", dependencies = {"nvim-tree/nvim-web-devicons"}},
{'nvim-tree/nvim-tree.lua', dependencies = {'nvim-tree/nvim-web-devicons'}, tag = 'nightly'},
{dir = '~/.config/nvim/colorschemes/material'},
{dir = '~/.config/nvim/colorschemes/material', dependencies= {"rktjmp/lush.nvim"}},
})