aboutsummaryrefslogtreecommitdiff
path: root/neovim/.config/nvim/lua/plugins/catppuccin.lua
blob: e1a14e723a1872ac656cdae77e60807d08354c64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
vim.g.catppuccin_flavour = "macchiato" -- *latte*, frappe, *macchiato*, mocha
local colors = require("catppuccin.palettes").get_palette() -- return vim.g.catppuccin_flavour palette

require("catppuccin").setup({
  transparent_background = true,
  styles = {
    comments = {},
		conditionals = {},
  },
  integration = {
    telescope = true,
  },
	highlight_overrides = {
		all = {
			CursorLine = { bg = colors.base },
			CursorLineNr = { bg = colors.base },
		},
	},
})

vim.cmd([[ colorscheme catppuccin ]])