summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/theme.lua
blob: 72a6f8149d0569128442258d0f3a7a1d73889bc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
return {
	"navarasu/onedark.nvim",
	priority = 1000, -- make sure to load this before all the other start plugins
	config = function()
		require("onedark").setup({
			style = "darker",
			colors = {
				bright_orange = "#ff8800", -- define a new color
			},
			highlights = {
				-- ["@lsp.type.keyword"] = { fg = "$green", fmt = "bold,underline" },
				-- ["@lsp.type.property"] = { fg = "$bright_orange", bg = "#00ff00", fmt = "bold" },
				-- ["@lsp.type.function"] = { fg = "#0000ff", sp = "$cyan", fmt = "underline,italic" },
				-- ["@lsp.type.method"] = { link = "@function" },
				-- To add language specific config
				-- ["@lsp.type.variable.go"] = { fg = "none" },
			},
		})
		require("onedark").load()
	end,
}