Skip to content

Commit 1a08443

Browse files
author
Naphtali Odinakachi
committed
added some custom plugins
1 parent 66203fd commit 1a08443

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

lua/custom/plugins/autopairs.lua

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
return {
2+
"windwp/nvim-autopairs",
3+
config = function()
4+
require("nvim-autopairs").setup {}
5+
end,
6+
}

lua/custom/plugins/filetree.lua

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
-- Unless you are still migrating, remove the deprecated commands from v1.x
2+
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
3+
return {
4+
"nvim-neo-tree/neo-tree.nvim",
5+
version = "*",
6+
dependencies = {
7+
"nvim-lua/plenary.nvim",
8+
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
9+
"MunifTanjim/nui.nvim",
10+
},
11+
config = function ()
12+
require('neo-tree').setup {}
13+
end,
14+
}

0 commit comments

Comments
 (0)