kickstart.nvim/lua/custom/plugins/init.lua

35 lines
753 B
Lua
Raw Normal View History

-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
2024-02-14 10:57:02 -05:00
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
return {
2024-02-14 16:28:55 -05:00
{
"tpope/vim-repeat",
version = "*",
2024-02-14 10:57:02 -05:00
},
2024-02-14 16:28:55 -05:00
{
"nvim-neo-tree/neo-tree.nvim",
version = "*",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
config = function()
require('neo-tree').setup {}
end
},
{
"ggandor/leap.nvim",
version = "*",
dependencies = {
"tpope/vim-repeat",
},
config = function()
require('leap').create_default_mappings()
end
}
2024-02-14 10:57:02 -05:00
}