summaryrefslogtreecommitdiffstats
path: root/lua/plugins/colorscheme.lua
blob: 9651dccec23a0cce4df80ec905250b7c24804a20 (plain)
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
return {
	{
		"yorik1984/newpaper.nvim",
		lazy = false,
    	priority = 1000,
    	config = function()
			local colors = require("newpaper.colors").setup(require("newpaper.config").config)
			vim.g.newpaper_colors_advanced = {
				linenumber_bg = colors.bg
			}
			vim.g.newpaper_custom_highlights = {
				CursorLineNr = { bg = colors.bg, fg = colors.cursor_nr_fg },
				TelescopePromptTitle = { bg = colors.telescope_fg, fg = colors.lightorange },
				TelescopePromptPrefix = { fg = colors.lightorange },
				TelescopePromptCounter = { fg = colors.lightorange },
				TelescopePromptBorder = { bg = colors.telescope_fg, fg = colors.telescope_fg },
				TelescopePromptNormal = { bg = colors.telescope_fg, fg = colors.telescope_bg },
				TelescopeResultsNormal = { bg = colors.telescope_bg, fg = colors.telescope_fg },
				TelescopeResultsBorder = { bg = colors.telescope_bg, fg = colors.telescope_bg },
				TelescopePreviewNormal = { bg = colors.telescope_bg },
				TelescopePreviewBorder = { bg = colors.telescope_bg, fg = colors.telescope_bg },
				TelescopePreviewTitle = { bg = colors.telescope_bg, fg = colors.teal },
			}
			vim.cmd.colorscheme('newpaper')
    	end,
	}
}