mirror of
https://github.com/sadan4/nvim.git
synced 2024-11-17 06:44:39 -05:00
90 lines
1.6 KiB
Lua
90 lines
1.6 KiB
Lua
|
local plugins = {
|
||
|
{
|
||
|
"williamboman/mason.nvim",
|
||
|
},
|
||
|
{
|
||
|
"williamboman/mason-lspconfig.nvim",
|
||
|
},
|
||
|
{
|
||
|
"neovim/nvim-lspconfig",
|
||
|
},
|
||
|
{
|
||
|
"folke/trouble.nvim",
|
||
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||
|
opts = {},
|
||
|
},
|
||
|
{
|
||
|
"abecodes/tabout.nvim",
|
||
|
lazy = false,
|
||
|
requires = {
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
"L3MON4D3/LuaSnip",
|
||
|
"hrsh7th/nvim-cmp",
|
||
|
},
|
||
|
event = "InsertCharPre", -- Set the event to 'InsertCharPre' for better compatibility
|
||
|
priority = 1000,
|
||
|
},
|
||
|
{
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
build = ":TSUpdate",
|
||
|
},
|
||
|
{
|
||
|
"numToStr/Comment.nvim",
|
||
|
opts = {
|
||
|
-- add any options here
|
||
|
},
|
||
|
lazy = false,
|
||
|
},
|
||
|
|
||
|
{
|
||
|
"windwp/nvim-autopairs",
|
||
|
event = "InsertEnter",
|
||
|
config = true,
|
||
|
-- use opts = {} for passing setup options
|
||
|
-- this is equalent to setup({}) function
|
||
|
opts = {},
|
||
|
},
|
||
|
{
|
||
|
"folke/tokyonight.nvim",
|
||
|
lazy = false,
|
||
|
priority = 1000,
|
||
|
opts = {},
|
||
|
},
|
||
|
{
|
||
|
"mhartington/formatter.nvim",
|
||
|
},
|
||
|
{
|
||
|
"nvim-telescope/telescope.nvim",
|
||
|
tag = "0.1.5",
|
||
|
dependencies = { "nvim-lua/plenary.nvim" },
|
||
|
},
|
||
|
{
|
||
|
"hrsh7th/cmp-nvim-lsp",
|
||
|
},
|
||
|
{
|
||
|
"hrsh7th/nvim-cmp",
|
||
|
},
|
||
|
{
|
||
|
"L3MON4D3/LuaSnip",
|
||
|
-- follow latest release.
|
||
|
version = "v2.*", -- Replace <CurrentMajor> by the latest released major (first number of latest release)
|
||
|
-- install jsregexp (optional!).
|
||
|
build = "make install_jsregexp",
|
||
|
},
|
||
|
{
|
||
|
"saadparwaiz1/cmp_luasnip",
|
||
|
},
|
||
|
{
|
||
|
"nvim-tree/nvim-tree.lua",
|
||
|
},
|
||
|
{
|
||
|
"kevinhwang91/nvim-ufo",
|
||
|
dependencies = { "kevinhwang91/promise-async" },
|
||
|
},
|
||
|
--{
|
||
|
-- 'mfussenegger/nvim-lint'
|
||
|
--},
|
||
|
}
|
||
|
local opts = {}
|
||
|
require("lazy").setup(plugins, opts)
|