diff --git a/lua/plugins/comment.lua b/lua/plugins/comment.lua new file mode 100644 index 0000000..942053e --- /dev/null +++ b/lua/plugins/comment.lua @@ -0,0 +1,5 @@ +return { + 'numToStr/Comment.nvim', + opts = { + -- add any options here + } diff --git a/lua/plugins/dev-icon.lua b/lua/plugins/dev-icon.lua new file mode 100644 index 0000000..9bd2964 --- /dev/null +++ b/lua/plugins/dev-icon.lua @@ -0,0 +1 @@ +return { "nvim-tree/nvim-web-devicons", opts = {} } diff --git a/lua/plugins/lualine.lua b/lua/plugins/lualine.lua new file mode 100644 index 0000000..5f69610 --- /dev/null +++ b/lua/plugins/lualine.lua @@ -0,0 +1,4 @@ +return { + 'nvim-lualine/lualine.nvim', + dependencies = { 'nvim-tree/nvim-web-devicons' } +} diff --git a/lua/plugins/move.lua b/lua/plugins/move.lua new file mode 100644 index 0000000..c4b7385 --- /dev/null +++ b/lua/plugins/move.lua @@ -0,0 +1,6 @@ +return { + 'fedepujol/move.nvim', + opts = { + --- Config + } +} diff --git a/lua/plugins/neo-tree.lua b/lua/plugins/neo-tree.lua new file mode 100644 index 0000000..2510423 --- /dev/null +++ b/lua/plugins/neo-tree.lua @@ -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 + }, +}