-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.lua
More file actions
37 lines (36 loc) · 842 Bytes
/
Copy pathuser.lua
File metadata and controls
37 lines (36 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
-- https://github.com/AstroNvim/user_example
-- https://neovim.io/doc/user/lua.html#lua-vim
---@type LazySpec
return {
-- colorsheme --
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000
},
-- surround --
{
"kylechui/nvim-surround",
version = "*",
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
-- Empty to use defaults --
})
end
},
-- "ray-x/go.nvim"
{
"goolord/alpha-nvim",
opts = function(_, opts)
opts.section.header.val = {
"████████ ██ AstroNvim",
" ██ ",
" ██ ██ ███ ███",
" ██ ██ ██ █ █ ██",
" ██ ██ ██ █ ██",
}
return opts
end,
},
}