.dotfiles/configs/nvim/lua/core/theme.lua

49 lines
921 B
Lua
Raw Normal View History

2022-04-25 16:23:14 +02:00
-- Enable Theming / Syntax
2022-09-02 16:15:54 +02:00
vim.g.catppuccin_flavour = "mocha" -- latte, frappe, macchiato, mocha
local cat = require("catppuccin")
cat.setup({
transparent_background = true,
compile = {
enabled = true,
path = vim.fn.stdpath("cache") .. "/catppuccin",
},
styles = {
comments = { "italic" },
strings = { "italic" },
},
integrations = {
gitsigns = true,
telescope = true,
treesitter = true,
cmp = true,
nvimtree = {
enabled = true,
show_root = false,
},
dap = {
enabled = true,
enable_ui = true,
},
native_lsp = {
enabled = true,
},
ts_rainbow = true,
indent_blankline = {
enabled = true,
colored_indent_levels = false,
},
},
})
2022-04-25 16:23:14 +02:00
require("nightfox").setup({
options = {
2022-09-02 16:15:54 +02:00
transparent = true,
},
2022-04-25 16:23:14 +02:00
})
2022-09-02 16:15:54 +02:00
vim.cmd("colorscheme catppuccin")
require("utils.theme-reloader")
require("configs.lualine")