removed nvim as submodule
This commit is contained in:
parent
802e03c77e
commit
3a6b72a050
16 changed files with 727 additions and 1 deletions
16
nvim/lua/plugins/alpha.lua
Normal file
16
nvim/lua/plugins/alpha.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
"goolord/alpha-nvim",
|
||||
dependencies = {
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
config = function()
|
||||
local theta = require("alpha.themes.theta")
|
||||
theta.config.layout[1].val = math.floor(vim.fn.winheight(0) * 0.2)
|
||||
theta.file_icons.provider = "devicons"
|
||||
theta.header.opts.hl = "CursorLineNr"
|
||||
require("alpha").setup(
|
||||
theta.config
|
||||
)
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue