From 2ee846e12a12f7b857306cc96d47ce9fad31711d Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sat, 1 Jan 2022 14:01:13 -0500 Subject: [PATCH] chore: updated default config in readme --- README.md | 130 +++++------------------------------------------------- 1 file changed, 12 insertions(+), 118 deletions(-) diff --git a/README.md b/README.md index cb8e1ca..b34f02d 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ styles = { functions = "italic", keywords = "italic", strings = "NONE", - variables = "NONE", + variables = "italic", }, integrations = { treesitter = true, @@ -107,9 +107,10 @@ integrations = { }, }, lsp_trouble = false, + cmp = true, lsp_saga = false, gitgutter = false, - gitsigns = false, + gitsigns = true, telescope = false, nvimtree = { enabled = false, @@ -117,21 +118,22 @@ integrations = { }, which_key = false, indent_blankline = { - enabled = false, + enabled = true, colored_indent_levels = false, }, - dashboard = false, + dashboard = true, neogit = false, vim_sneak = false, fern = false, barbar = false, - bufferline = false, - markdown = false, + bufferline = true, + markdown = true, lightspeed = false, ts_rainbow = false, hop = false, - cmp = false, -}, + notify = true, + telekasten = true, +} ``` The way you setup the settings on your configuration varies on whether you are using vimL for this or Lua. @@ -144,61 +146,7 @@ The way you setup the settings on your configuration varies on whether you are u local catppuccin = require("catppuccin") -- configure it -catppuccin.setup( - { - transparent_background = false, - term_colors = false, - styles = { - comments = "italic", - functions = "italic", - keywords = "italic", - strings = "NONE", - variables = "NONE", - }, - 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, - lsp_saga = false, - gitgutter = false, - gitsigns = false, - telescope = false, - nvimtree = { - enabled = false, - show_root = false, - }, - which_key = false, - indent_blankline = { - enabled = false, - colored_indent_levels = false, - }, - dashboard = false, - neogit = false, - vim_sneak = false, - fern = false, - barbar = false, - bufferline = false, - markdown = false, - lightspeed = false, - ts_rainbow = false, - hop = false, - }, - } -) +catppuccin.setup() ```
@@ -213,61 +161,7 @@ lua << EOF local catppuccin = require("catppuccin") -- configure it -catppuccin.setup( - { - transparent_background = false, - term_colors = false, - styles = { - comments = "italic", - functions = "italic", - keywords = "italic", - strings = "NONE", - variables = "NONE", - }, - 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, - lsp_saga = false, - gitgutter = false, - gitsigns = false, - telescope = false, - nvimtree = { - enabled = false, - show_root = false, - }, - which_key = false, - indent_blankline = { - enabled = false, - colored_indent_levels = false, - }, - dashboard = false, - neogit = false, - vim_sneak = false, - fern = false, - barbar = false, - bufferline = false, - markdown = false, - lightspeed = false, - ts_rainbow = false, - hop = false, - }, - } -) +catppuccin.setup() EOF ```