restoring files

This commit is contained in:
Andres 2023-04-21 18:43:37 +02:00
parent 982b18195e
commit c2b5078e3e
6 changed files with 143 additions and 47 deletions

1
lua/custom/init.lua Normal file
View file

@ -0,0 +1 @@

View file

@ -0,0 +1,9 @@
-- File: lua/custom/plugins/autopairs.lua
return {
"windwp/nvim-autopairs",
config = function()
require("nvim-autopairs").setup {}
end,
}

View file

@ -0,0 +1,4 @@
return {
'weilbith/nvim-code-action-menu',
}

View file

@ -0,0 +1,15 @@
return {
"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 ()
-- Unless you are still migrating, remove the deprecated commands from v1.x
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
require('neo-tree').setup {}
end,
}

View file

@ -0,0 +1,5 @@
-- using packer.nvim
return {
'nmac427/guess-indent.nvim',
config = function() require('guess-indent').setup {} end,
}