starter/lua/plugins/override.lua

72 lines
3.3 KiB
Lua
Raw Normal View History

2024-05-16 10:32:26 +08:00
local logo = [[
2024-05-16 14:32:32 +08:00
]]
2024-05-13 13:57:32 +08:00
return {
{
"LazyVim/LazyVim",
opts = {
colorscheme = "everforest",
},
},
2024-05-15 16:34:20 +08:00
{
"goolord/alpha-nvim",
opts = {
section = {
header = {
val = vim.split(logo, "\n"),
},
},
},
},
2024-05-16 10:20:57 +08:00
{
"hrsh7th/nvim-cmp",
opts = {
window = {
2024-05-16 12:20:48 +08:00
documentation = {
border = "rounded",
},
2024-05-16 10:20:57 +08:00
completion = {
border = "rounded",
},
},
},
},
2024-05-20 17:42:41 +08:00
{
"folke/noice.nvim",
opts = {
presets = {
2024-05-21 23:45:02 +08:00
bottom_search = false,
2024-05-20 17:42:41 +08:00
lsp_doc_border = true,
},
lsp = {
hover = {
silent = true,
},
},
},
},
2024-05-24 15:21:00 +08:00
{
"nvim-neo-tree/neo-tree.nvim",
dependencies = "MunifTanjim/nui.nvim",
version = "*",
opts = {
auto_clean_after_session_restore = true,
close_if_last_window = true,
},
},
2024-05-13 13:57:32 +08:00
}