restoring files
This commit is contained in:
parent
982b18195e
commit
c2b5078e3e
6 changed files with 143 additions and 47 deletions
1
lua/custom/init.lua
Normal file
1
lua/custom/init.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
9
lua/custom/plugins/autopairs.lua
Normal file
9
lua/custom/plugins/autopairs.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
-- File: lua/custom/plugins/autopairs.lua
|
||||
|
||||
return {
|
||||
"windwp/nvim-autopairs",
|
||||
config = function()
|
||||
require("nvim-autopairs").setup {}
|
||||
end,
|
||||
}
|
||||
|
||||
4
lua/custom/plugins/code_actions.lua
Normal file
4
lua/custom/plugins/code_actions.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
'weilbith/nvim-code-action-menu',
|
||||
|
||||
}
|
||||
15
lua/custom/plugins/filetree.lua
Normal file
15
lua/custom/plugins/filetree.lua
Normal 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,
|
||||
}
|
||||
5
lua/custom/plugins/guess_indent.lua
Normal file
5
lua/custom/plugins/guess_indent.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
-- using packer.nvim
|
||||
return {
|
||||
'nmac427/guess-indent.nvim',
|
||||
config = function() require('guess-indent').setup {} end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue