Neovim: Migrate catppuccin config according to instructions

main
Marko Korhonen 2 years ago
parent 8f700627f7
commit 910c15fd42
No known key found for this signature in database
GPG Key ID: 911B85FBC6003FE5

@ -1,56 +1,49 @@
require("catppuccin").setup( require("catppuccin").setup({
{ transparent_background = false,
transparent_background = false, term_colors = false,
term_colors = false, compile = {enabled = true, path = vim.fn.stdpath "cache" .. "/catppuccin"},
styles = { styles = {
comments = "italic", comments = {"italic"},
functions = "italic", functions = {"italic"},
keywords = "italic", keywords = {"italic"},
strings = "NONE", strings = {},
variables = "NONE", variables = {}
}, },
integrations = { integrations = {
treesitter = true, treesitter = true,
native_lsp = { native_lsp = {
enabled = true, enabled = true,
virtual_text = { virtual_text = {
errors = "italic", errors = {"italic"},
hints = "italic", hints = {"italic"},
warnings = "italic", warnings = {"italic"},
information = "italic", information = {"italic"}
}, },
underlines = { underlines = {
errors = "underline", errors = {"underline"},
hints = "underline", hints = {"underline"},
warnings = "underline", warnings = {"underline"},
information = "underline", information = {"underline"}
}, }
}, },
lsp_trouble = false, lsp_trouble = false,
lsp_saga = false, lsp_saga = false,
gitgutter = true, gitgutter = true,
gitsigns = false, gitsigns = false,
telescope = true, telescope = true,
nvimtree = { nvimtree = {enabled = false, show_root = false},
enabled = false, which_key = false,
show_root = false, indent_blankline = {enabled = true, colored_indent_levels = false},
}, dashboard = false,
which_key = false, neogit = false,
indent_blankline = { vim_sneak = false,
enabled = true, fern = false,
colored_indent_levels = false, barbar = false,
}, bufferline = false,
dashboard = false, markdown = false,
neogit = false, lightspeed = false,
vim_sneak = false, ts_rainbow = false,
fern = false, hop = false
barbar = false, }
bufferline = false, })
markdown = false, vim.cmd [[colorscheme catppuccin]]
lightspeed = false,
ts_rainbow = false,
hop = false,
},
}
)
vim.cmd[[colorscheme catppuccin]]

Loading…
Cancel
Save