chore: updated default config in readme

experiments
Pocco81 3 years ago
parent 0d19a3252f
commit 2ee846e12a

@ -87,7 +87,7 @@ styles = {
functions = "italic", functions = "italic",
keywords = "italic", keywords = "italic",
strings = "NONE", strings = "NONE",
variables = "NONE", variables = "italic",
}, },
integrations = { integrations = {
treesitter = true, treesitter = true,
@ -107,9 +107,10 @@ integrations = {
}, },
}, },
lsp_trouble = false, lsp_trouble = false,
cmp = true,
lsp_saga = false, lsp_saga = false,
gitgutter = false, gitgutter = false,
gitsigns = false, gitsigns = true,
telescope = false, telescope = false,
nvimtree = { nvimtree = {
enabled = false, enabled = false,
@ -117,21 +118,22 @@ integrations = {
}, },
which_key = false, which_key = false,
indent_blankline = { indent_blankline = {
enabled = false, enabled = true,
colored_indent_levels = false, colored_indent_levels = false,
}, },
dashboard = false, dashboard = true,
neogit = false, neogit = false,
vim_sneak = false, vim_sneak = false,
fern = false, fern = false,
barbar = false, barbar = false,
bufferline = false, bufferline = true,
markdown = false, markdown = true,
lightspeed = false, lightspeed = false,
ts_rainbow = false, ts_rainbow = false,
hop = 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. 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") local catppuccin = require("catppuccin")
-- configure it -- configure it
catppuccin.setup( catppuccin.setup(<settings>)
{
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,
},
}
)
``` ```
<br /> <br />
@ -213,61 +161,7 @@ lua << EOF
local catppuccin = require("catppuccin") local catppuccin = require("catppuccin")
-- configure it -- configure it
catppuccin.setup( catppuccin.setup(<settings>)
{
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,
},
}
)
EOF EOF
``` ```

Loading…
Cancel
Save