first commit
This commit is contained in:
7
lua/plugins/blankline.lua
Normal file
7
lua/plugins/blankline.lua
Normal file
@ -0,0 +1,7 @@
|
||||
return {
|
||||
"lukas-reineke/indent-blankline.nvim",
|
||||
main = "ibl",
|
||||
---@module "ibl"
|
||||
---@type ibl.config
|
||||
opts = {},
|
||||
}
|
12
lua/plugins/gitsigns.lua
Normal file
12
lua/plugins/gitsigns.lua
Normal file
@ -0,0 +1,12 @@
|
||||
return {
|
||||
"lewis6991/gitsigns.nvim",
|
||||
event = "User FilePost",
|
||||
opts = function()
|
||||
return {
|
||||
signs = {
|
||||
delete = { text = "" },
|
||||
changedelete = { text = "" },
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
1
lua/plugins/init.lua
Normal file
1
lua/plugins/init.lua
Normal file
@ -0,0 +1 @@
|
||||
return {}
|
7
lua/plugins/lualine.lua
Normal file
7
lua/plugins/lualine.lua
Normal file
@ -0,0 +1,7 @@
|
||||
return {
|
||||
'nvim-lualine/lualine.nvim',
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||
config = function()
|
||||
require('lualine').setup()
|
||||
end
|
||||
}
|
10
lua/plugins/neo-tree.lua
Normal file
10
lua/plugins/neo-tree.lua
Normal file
@ -0,0 +1,10 @@
|
||||
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", -- Optional image support in preview window: See `# Preview Mode` for more information
|
||||
}
|
||||
}
|
6
lua/plugins/onedark.lua
Normal file
6
lua/plugins/onedark.lua
Normal file
@ -0,0 +1,6 @@
|
||||
return {
|
||||
"navarasu/onedark.nvim",
|
||||
config = function()
|
||||
require('onedark').load()
|
||||
end,
|
||||
}
|
Reference in New Issue
Block a user