dotfiles/nvim/lua/plugins.lua

41 lines
1.9 KiB
Lua
Raw Normal View History

2023-07-19 13:38:30 +02:00
-- Install Lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require('lazy').setup({
"rafamadriz/friendly-snippets",
'ConradIrwin/vim-bracketed-paste',
'Vimjas/vim-python-pep8-indent',
2023-07-19 13:47:26 +02:00
'airblade/vim-rooter',
2023-07-19 13:38:30 +02:00
'cappyzawa/trim.nvim',
'ervandew/supertab',
'ggandor/leap.nvim',
2023-07-19 13:47:26 +02:00
'gpanders/editorconfig.nvim',
'intrntbrn/awesomewm-vim-tmux-navigator',
'mbbill/undotree',
2023-07-19 13:38:30 +02:00
'numToStr/Comment.nvim',
2023-08-17 11:07:02 +02:00
{'vimwiki/vimwiki'},
2023-07-19 13:38:30 +02:00
'windwp/nvim-autopairs',
2023-08-17 11:07:02 +02:00
{'lervag/vimtex', ft='latex'},
2023-07-19 13:47:26 +02:00
{'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"},
2023-08-17 11:07:02 +02:00
{"NeogitOrg/neogit", dependencies = {"nvim-lua/plenary.nvim", "nvim-telescope/telescope.nvim", "sindrets/diffview.nvim"}, config = true},
2023-07-19 13:47:26 +02:00
{'hrsh7th/nvim-cmp', dependencies = {'hrsh7th/cmp-buffer', 'hrsh7th/cmp-cmdline', 'hrsh7th/cmp-nvim-lsp', 'hrsh7th/cmp-path', 'hrsh7th/vim-vsnip', 'hrsh7th/vim-vsnip-integ'}},
2023-07-19 13:38:30 +02:00
{'nvim-lualine/lualine.nvim', dependencies = { 'nvim-tree/nvim-web-devicons', opt = true }},
2023-07-19 13:47:26 +02:00
{'nvim-telescope/telescope-fzf-native.nvim', build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' },
2023-07-19 13:38:30 +02:00
{'nvim-telescope/telescope.nvim', dependencies = {'nvim-lua/plenary.nvim'}},
{'nvim-tree/nvim-tree.lua', dependencies = {'nvim-tree/nvim-web-devicons'}, tag = 'nightly'},
2023-07-19 13:47:26 +02:00
{dir = '~/.config/nvim/colorschemes/material', dependencies= {"rktjmp/lush.nvim"}},
2023-07-19 13:38:30 +02:00
})