aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/neopywal.lua
blob: e95686a7d5a49074f75d5b77f451e947dc995cf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local init = function()
  vim.cmd.colorscheme("neopywal")
end

local config = function()
  require("neopywal").setup({
    use_wallust = true,
  })
end

return {
  "RedsXDD/neopywal.nvim",
  lazy = false,
  name = "neopywal",
  init = init,
  config = config,
  priority = 1000,
}