dotfiles/.config/nvim/lua/plugins/shelman-theme.lua

11 lines
193 B
Lua
Raw Normal View History

2023-03-12 21:56:50 +01:00
return {
name = "shelman-theme",
dir = "~/.config/shelman-theme/current/neovim",
2023-03-25 17:14:05 +01:00
dev = true,
lazy = false,
priority = 1000,
config = function()
vim.cmd([[colorscheme shelman]])
end,
2023-03-12 21:56:50 +01:00
}