44 lines
No EOL
732 B
Lua
44 lines
No EOL
732 B
Lua
|
|
local overrides = require("custom.configs.overrides")
|
|
|
|
---@type NvPluginSpec[]
|
|
local plugins = {
|
|
|
|
-- Override plugin definition options
|
|
-- override plugin configs
|
|
{
|
|
"williamboman/mason.nvim",
|
|
opts = overrides.mason
|
|
},
|
|
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = overrides.treesitter,
|
|
},
|
|
|
|
{
|
|
"nvim-tree/nvim-tree.lua",
|
|
opts = overrides.nvimtree,
|
|
},
|
|
|
|
-- Install a plugin
|
|
{
|
|
"max397574/better-escape.nvim",
|
|
event = "InsertEnter",
|
|
config = function()
|
|
require("better_escape").setup()
|
|
end,
|
|
},
|
|
|
|
-- vim-fugitive for integrated Git
|
|
{
|
|
"tpope/vim-fugitive",
|
|
event = "VeryLazy",
|
|
},
|
|
-- fzf fuzzyfinder
|
|
{
|
|
"vijaymarupudi/nvim-fzf",
|
|
}
|
|
}
|
|
|
|
return plugins |