nvim/lua/plugins/init.lua

66 lines
1.6 KiB
Lua

return {
{ 'nvim-treesitter/nvim-treesitter', build = ':TSUpdate' },
{
'L3MON4D3/LuaSnip',
version = "v2.*",
build = 'make install_jsregexp',
},
{ 'saadparwaiz1/cmp_luasnip' },
'lewis6991/gitsigns.nvim',
{
'nvim-telescope/telescope.nvim',
tag = '0.1.8',
dependencies = {
{ 'nvim-lua/plenary.nvim' } }
},
{
'tpope/vim-fugitive',
name = 'fugitive'
},
{
'ThePrimeagen/harpoon',
dependencies = {
{ 'nvim-lua/plenary.nvim' },
},
},
{
'ray-x/lsp_signature.nvim',
event = 'VeryLazy',
opts = {},
config = function(_, opts) require('lsp_signature').setup(opts) end
},
'rcarriga/nvim-notify',
{
'danymat/neogen',
dependencies = 'nvim-treesitter/nvim-treesitter',
config = true,
},
{
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
commit = "29be0919b91fb59eca9e90690d76014233392bef",
opts = {},
},
{
'jiangmiao/auto-pairs',
},
{
"kylechui/nvim-surround",
version = "*", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
keymaps = {
normal = "<leader>s",
},
})
end
},
{
'lervag/vimtex',
lazy = false,
init = function()
vim.g.vimtex_view_method = 'zathura'
end
},
}