aboutsummaryrefslogtreecommitdiff
path: root/configs/nvim/lua/plugins.lua
blob: 42038a75c1357a6956849e03987cc121892c6c42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
return {
    "neovim/nvim-lspconfig",
    "Hoffs/omnisharp-extended-lsp.nvim",
    "hrsh7th/nvim-cmp",
    "hrsh7th/cmp-nvim-lsp",
    "hrsh7th/cmp-buffer",
    "hrsh7th/cmp-path",
    "hrsh7th/cmp-cmdline",
    "L3MON4D3/LuaSnip",
    "saadparwaiz1/cmp_luasnip",
    {
        "sainnhe/everforest",
        lazy = false,
        priority = 1000, -- make sure to load this before all the other start plugins
    },
    "nvim-tree/nvim-web-devicons",
    "nvim-lua/plenary.nvim",
    "nvim-lualine/lualine.nvim",
    "nvim-telescope/telescope.nvim",
    "windwp/nvim-autopairs",
    "mhartington/formatter.nvim",
    "mfussenegger/nvim-lint",
    "akinsho/toggleterm.nvim",
    {
        "nvim-neo-tree/neo-tree.nvim",
        dependencies = {
            "nvim-lua/plenary.nvim",
            "MunifTanjim/nui.nvim",
        },
    },
}