initial commit, working on TODO's

This commit is contained in:
RingOfStorms (Joshua Bell) 2023-05-22 21:37:52 -05:00
commit 5e821a4d61
12 changed files with 411 additions and 0 deletions

19
lua/user/material.lua Normal file
View file

@ -0,0 +1,19 @@
return {
"marko-cerovac/material.nvim",
commit = "0c725897bc3d22c45fbf25a602002ee02f06f619", -- May 22, 2023
config = function()
vim.g.material_style = "darker"
require("material").setup {
plugins = {
"dashboard",
"gitsigns",
"telescope",
"nvim-tree",
"which-key",
},
high_visibility = {
darker = true
}
}
end
}