aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/appearance.lua
blob: 753419b10393a2a9424e3b89c4bdf00acfadd968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
return {
	{
		"folke/tokyonight.nvim",
		lazy = false,
		priority = 1000,
		opts = {},
	},
	{
		"folke/todo-comments.nvim",
		dependencies = { "nvim-lua/plenary.nvim" },
		opts = {
			signs = false,
			highlight = {
				pattern = [[.*<(KEYWORDS)\s*]],
			}
		}
	}
}