13 lines
307 B
Lua
13 lines
307 B
Lua
return {
|
|
"nvim-lua/plenary.nvim", -- lua functions that many plugins use
|
|
"christoomey/vim-tmux-navigator", -- tmux & split window navigation
|
|
"dstein64/nvim-scrollview",
|
|
{
|
|
"sontungexpt/witch",
|
|
priority = 1000,
|
|
lazy = false,
|
|
config = function(_, opts)
|
|
require("witch").setup(opts)
|
|
end,
|
|
},
|
|
}
|