We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66203fd commit 1a08443Copy full SHA for 1a08443
lua/custom/plugins/autopairs.lua
@@ -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
@@ -0,0 +1,14 @@
+-- Unless you are still migrating, remove the deprecated commands from v1.x
+vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
+ "nvim-neo-tree/neo-tree.nvim",
+ version = "*",
+ 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
14
0 commit comments