mirror of
https://github.com/ksyasuda/rice.git
synced 2024-11-22 03:19:58 -08:00
62 lines
1.4 KiB
Lua
62 lines
1.4 KiB
Lua
|
local catppuccin = require("catppuccin")
|
||
|
|
||
|
local settings = {
|
||
|
transparent_background = false,
|
||
|
term_colors = false,
|
||
|
styles = {
|
||
|
comments = "italic",
|
||
|
functions = "italic",
|
||
|
keywords = "italic",
|
||
|
strings = "NONE",
|
||
|
variables = "italic",
|
||
|
},
|
||
|
integrations = {
|
||
|
treesitter = true,
|
||
|
native_lsp = {
|
||
|
enabled = true,
|
||
|
virtual_text = {
|
||
|
errors = "italic",
|
||
|
hints = "italic",
|
||
|
warnings = "italic",
|
||
|
information = "italic",
|
||
|
},
|
||
|
underlines = {
|
||
|
errors = "underline",
|
||
|
hints = "underline",
|
||
|
warnings = "underline",
|
||
|
information = "underline",
|
||
|
},
|
||
|
},
|
||
|
lsp_trouble = false,
|
||
|
cmp = true,
|
||
|
lsp_saga = false,
|
||
|
gitgutter = false,
|
||
|
gitsigns = true,
|
||
|
telescope = true,
|
||
|
nvimtree = {
|
||
|
enabled = true,
|
||
|
show_root = false,
|
||
|
transparent_panel = false,
|
||
|
},
|
||
|
which_key = false,
|
||
|
indent_blankline = {
|
||
|
enabled = true,
|
||
|
colored_indent_levels = false,
|
||
|
},
|
||
|
dashboard = true,
|
||
|
neogit = false,
|
||
|
vim_sneak = false,
|
||
|
fern = false,
|
||
|
barbar = false,
|
||
|
bufferline = true,
|
||
|
markdown = true,
|
||
|
lightspeed = false,
|
||
|
ts_rainbow = false,
|
||
|
hop = false,
|
||
|
notify = true,
|
||
|
telekasten = true,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
catppuccin.setup(settings)
|