add more plugins
This commit is contained in:
parent
f0ef247331
commit
1c83d4dab0
7 changed files with 68 additions and 14 deletions
|
@ -1,9 +0,0 @@
|
|||
return {
|
||||
{
|
||||
"RedsXDD/neopywal.nvim",
|
||||
name = "neopywal",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
}
|
||||
}
|
11
lua/plugins/neotree.lua
Normal file
11
lua/plugins/neotree.lua
Normal file
|
@ -0,0 +1,11 @@
|
|||
return {
|
||||
{
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
"MunifTanjim/nui.nvim",
|
||||
-- "3rd/image.nvim", -- Optional see `# Preview Mode` for more information
|
||||
}
|
||||
}
|
||||
}
|
30
lua/plugins/ui.lua
Normal file
30
lua/plugins/ui.lua
Normal file
|
@ -0,0 +1,30 @@
|
|||
return {
|
||||
{
|
||||
"RedsXDD/neopywal.nvim",
|
||||
name = "neopywal",
|
||||
opts = {},
|
||||
},
|
||||
{
|
||||
-- Lua status-bar
|
||||
"nvim-lualine/lualine.nvim",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
opts = {
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = 'auto',
|
||||
component_separators = { left = "|", right = "|"},
|
||||
section_separators = { left = "", right = ""},
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
event = { "BufReadPost", "BufNewFile" },
|
||||
opts = function()
|
||||
return require "config.plugins.treesitter"
|
||||
end,
|
||||
config = function(_, opts)
|
||||
require("nvim-treesitter.configs").setup(opts)
|
||||
end,
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue