mirror of
https://github.com/sadan4/light.config.git
synced 2024-11-16 19:24:38 -05:00
53 lines
1 KiB
Lua
53 lines
1 KiB
Lua
local plugins = {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
},
|
|
{
|
|
"windwp/nvim-autopairs",
|
|
event = "InsertEnter",
|
|
config = true,
|
|
-- use opts = {} for passing setup options
|
|
-- this is equalent to setup({}) function
|
|
opts = {},
|
|
},
|
|
{
|
|
"nvim-telescope/telescope.nvim",
|
|
tag = "0.1.5",
|
|
opts = {
|
|
extensions = {
|
|
fzf = {
|
|
fuzzy = true, -- false will only do exact matching
|
|
override_generic_sorter = true, -- override the generic sorter
|
|
override_file_sorter = true, -- override the file sorter
|
|
case_mode = "ignore_case", -- or "ignore_case" or "respect_case" or smart_case
|
|
-- the default case_mode is "smart_case"
|
|
},
|
|
},
|
|
},
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
},
|
|
{
|
|
"numToStr/Comment.nvim",
|
|
opts = {
|
|
-- add any options here
|
|
},
|
|
lazy = false,
|
|
},
|
|
{
|
|
"sadan4/eregex.vim",
|
|
},
|
|
{
|
|
"lambdalisue/suda.vim",
|
|
},
|
|
{
|
|
"folke/tokyonight.nvim",
|
|
lazy = false,
|
|
priority = 1000,
|
|
opts = {},
|
|
},
|
|
|
|
};
|
|
local opts = {};
|
|
require"lazy".setup(plugins, opts)
|