Upload files to "lua/plugins"
This commit is contained in:
5
lua/plugins/comment.lua
Normal file
5
lua/plugins/comment.lua
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
return {
|
||||||
|
'numToStr/Comment.nvim',
|
||||||
|
opts = {
|
||||||
|
-- add any options here
|
||||||
|
}
|
||||||
1
lua/plugins/dev-icon.lua
Normal file
1
lua/plugins/dev-icon.lua
Normal file
@@ -0,0 +1 @@
|
|||||||
|
return { "nvim-tree/nvim-web-devicons", opts = {} }
|
||||||
4
lua/plugins/lualine.lua
Normal file
4
lua/plugins/lualine.lua
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
return {
|
||||||
|
'nvim-lualine/lualine.nvim',
|
||||||
|
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
||||||
|
}
|
||||||
6
lua/plugins/move.lua
Normal file
6
lua/plugins/move.lua
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
return {
|
||||||
|
'fedepujol/move.nvim',
|
||||||
|
opts = {
|
||||||
|
--- Config
|
||||||
|
}
|
||||||
|
}
|
||||||
16
lua/plugins/neo-tree.lua
Normal file
16
lua/plugins/neo-tree.lua
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
return {
|
||||||
|
"nvim-neo-tree/neo-tree.nvim",
|
||||||
|
branch = "v3.x",
|
||||||
|
dependencies = {
|
||||||
|
"nvim-lua/plenary.nvim",
|
||||||
|
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
||||||
|
"MunifTanjim/nui.nvim",
|
||||||
|
-- {"3rd/image.nvim", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information
|
||||||
|
},
|
||||||
|
lazy = false, -- neo-tree will lazily load itself
|
||||||
|
---@module "neo-tree"
|
||||||
|
---@type neotree.Config?
|
||||||
|
opts = {
|
||||||
|
-- fill any relevant options here
|
||||||
|
},
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user