dev: added the rest of the links

dev-doc
Pocco81 3 years ago
parent 447f9ae119
commit aa9871eb03

@ -58,15 +58,19 @@
- [Telescope](https://github.com/nvim-telescope/telescope.nvim) - [Telescope](https://github.com/nvim-telescope/telescope.nvim)
- [LSP Saga](https://github.com/glepnir/lspsaga.nvim) - [LSP Saga](https://github.com/glepnir/lspsaga.nvim)
- [Trouble](https://github.com/folke/trouble.nvim) - [Trouble](https://github.com/folke/trouble.nvim)
- WhichKey - [WhichKey](https://github.com/folke/which-key.nvim)
- Git signs - [Git signs](https://github.com/lewis6991/gitsigns.nvim)
- BarBar - [BarBar](https://github.com/romgrk/barbar.nvim)
- NvimTree - [NvimTree](https://github.com/kyazdani42/nvim-tree.lua)
- Lualine - [Lualine](https://github.com/hoob3rt/lualine.nvim)
- Git Gutter - [Git Gutter](https://github.com/airblade/vim-gitgutter)
- Fern - [Fern](https://github.com/lambdalisue/fern.vim)
- Lightline - [Lightline](https://github.com/itchyny/lightline.vim)
- And Many more... - [Dashboard](https://github.com/glepnir/dashboard-nvim)
- [Markdown](https://www.markdownguide.org/)
- [Sneak](https://github.com/justinmk/vim-sneak)
- [Neogit](https://github.com/TimUntersberger/neogit)
- [Indent Blankline](https://github.com/lukas-reineke/indent-blankline.nvim)
# 📺 Notices # 📺 Notices
@ -308,7 +312,7 @@ This settings are unrelated to any group and are independent.
## Styles ## Styles
Handles the style of general hi groups: Handles the style of general hi groups (see `:h highlight-args`):
- `comments`: (String) changed the style of the comments. - `comments`: (String) changed the style of the comments.
- `functions`: (String) changed the style of the functions. - `functions`: (String) changed the style of the functions.
@ -318,7 +322,7 @@ Handles the style of general hi groups:
## Integrations ## Integrations
These integrations allow Catppuccino to set the theme of varios plugins/stuff. To enable an integration you just need to set it to `true`, however, there are some special integrations... These integrations allow Catppuccino to set the theme of various plugins/stuff. To enable an integration you just need to set it to `true`, however, there are some special integrations...
If you'd like to know which highlight groups are being affected by Catppuccino, checkout this directory: [`lua/catppuccino/core/integrations/`](https://github.com/Pocco81/Catppuccino.nvim/tree/main/lua/catppuccino/core/integrations). If you'd like to know which highlight groups are being affected by Catppuccino, checkout this directory: [`lua/catppuccino/core/integrations/`](https://github.com/Pocco81/Catppuccino.nvim/tree/main/lua/catppuccino/core/integrations).
@ -373,36 +377,38 @@ catppuccino.setup(
) )
``` ```
You could use an existing color scheme as a template if you will ([`lua/catppuccino/color_schemes`](https://github.com/Pocco81/Catppuccino.nvim/tree/main/lua/catppuccino/color_schemes))
<details> <details>
<summary>Available colors</summary> <summary>Available colors</summary>
<p> <p>
- `bg`: nvim background color. - `bg`: nvim background color.
- `fg`: color of the text. - `fg`: color of the text.
- `fg_gutter` - `fg_gutter`
- `black` - `black`
- `gray` - `gray`
- `red` - `red`
- `green` - `green`
- `yellow` - `yellow`
- `blue` - `blue`
- `magenta` - `magenta`
- `cyan` - `cyan`
- `white` - `white`
- `orange` - `orange`
- `pink` - `pink`
- `black_br` - `black_br`
- `red_bg` - `red_bg`
- `green_br` - `green_br`
- `yellow_br` - `yellow_br`
- `blue_br` - `blue_br`
- `magenta_br` - `magenta_br`
- `cyan_br` - `cyan_br`
- `white_br` - `white_br`
- `orange_br` - `orange_br`
- `pink_br` - `pink_br`
- `comment` - `comment`
- `git`: - `git`:
``` ```
git = { git = {
@ -413,11 +419,11 @@ catppuccino.setup(
}, },
``` ```
- `bg_alt` - `bg_alt`
- `bg_highlight` - `bg_highlight`
- `fg_alt` - `fg_alt`
- `git.ignore` - `git.ignore`
- `diff`: - `diff`:
``` ```
diff = { -- also used for gitsigns diff = { -- also used for gitsigns
@ -428,20 +434,20 @@ diff = { -- also used for gitsigns
} }
``` ```
- `border_highlight` - `border_highlight`
- `border` - `border`
- `bg_popup` - `bg_popup`
- `bg_statusline` - `bg_statusline`
- `bg_sidebar` - `bg_sidebar`
- `bg_float` - `bg_float`
- `bg_visual` - `bg_visual`
- `bg_search` - `bg_search`
- `fg_sidebar` - `fg_sidebar`
- `error` - `error`
- `warning` - `warning`
- `info` - `info`
- `hint` - `hint`
- `variable` - `variable`
<br /> <br />
</details> </details>

Loading…
Cancel
Save