docs: 📝 Improve lazy loading explanation
Mention in documentation how excessive use of lazy loading may sometimes result in plugins appearing to be missing
This commit is contained in:
@@ -28,6 +28,7 @@ The rootiest neovim configuration you will ever see!
|
|||||||
Version control system
|
Version control system
|
||||||
- [luarocks](https://luarocks.org/) -
|
- [luarocks](https://luarocks.org/) -
|
||||||
Lua package manager
|
Lua package manager
|
||||||
|
- A terminal with [Nerd Fonts](https://github.com/ryanoasis/nerd-fonts/) support
|
||||||
|
|
||||||
- Optional (but recommended for the full experience)
|
- Optional (but recommended for the full experience)
|
||||||
- [ripgrep](https://github.com/BurntSushi/ripgrep) -
|
- [ripgrep](https://github.com/BurntSushi/ripgrep) -
|
||||||
@@ -81,13 +82,29 @@ The rootiest neovim configuration you will ever see!
|
|||||||
- Dashboard logo adjusts to the size of the window
|
- Dashboard logo adjusts to the size of the window
|
||||||
- Codeium-powered AI completion
|
- Codeium-powered AI completion
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
You may notice that some plugins or alternative colorschemes do not
|
||||||
|
initially appear in the command list.
|
||||||
|
|
||||||
|
This is expected. Neovim will load them on demand.
|
||||||
|
This allows for a leaner and faster-loading experience.
|
||||||
|
|
||||||
## Companion Tools
|
## Companion Tools
|
||||||
|
|
||||||
[Rootiest Kitty Conf](https://github.com/rootiest/rootiest-kitty) - A kitty configuration that is designed to work with this neovim configuration
|
[Rootiest Kitty Conf](https://github.com/rootiest/rootiest-kitty) -
|
||||||
|
A kitty configuration that is designed to work with this neovim configuration
|
||||||
|
|
||||||
[Rootiest Fish Conf](https://github.com/rootiest/rootiest-fish-conf) - A fish configuration that pairs well with this neovim configuration
|
[Rootiest Fish Conf](https://github.com/rootiest/rootiest-fish-conf) -
|
||||||
|
A fish configuration that pairs well with this neovim configuration
|
||||||
|
|
||||||
[Nerd Fonts](https://github.com/ryanoasis/nerd-fonts/) - A collection of fonts that include many icons and glyphs that are used in this configuration. The default font is Monaspace Krypton and kitty uses the Symbols Only Nerd Font.
|
[Nerd Fonts](https://github.com/ryanoasis/nerd-fonts/) -
|
||||||
|
A collection of fonts that include many icons and glyphs that are used in this configuration.
|
||||||
|
The default font used throughout the config is
|
||||||
|
[Monaspace Krypton](https://github.com/ryanoasis/nerd-fonts/releases/latest/download/Monaspace.zip).
|
||||||
|
Further, kitty uses the
|
||||||
|
[Symbols Only Nerd Font](https://github.com/ryanoasis/nerd-fonts/releases/latest/download/NerdFontsSymbolsOnly.zip)
|
||||||
|
to ensure compatibility with any font.
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
|
|||||||
@@ -638,6 +638,7 @@ require("lazy").setup({
|
|||||||
-- Apply the default colorscheme
|
-- Apply the default colorscheme
|
||||||
local kitty_theme = os.getenv("KITTY_THEME")
|
local kitty_theme = os.getenv("KITTY_THEME")
|
||||||
vim.cmd.colorscheme(kitty_theme or "catppuccin-frappe")
|
vim.cmd.colorscheme(kitty_theme or "catppuccin-frappe")
|
||||||
|
-- Set the colorscheme palette
|
||||||
if vim.g.colors_name == "catppuccin-frappe" then
|
if vim.g.colors_name == "catppuccin-frappe" then
|
||||||
THEMEPALETTE = require("catppuccin.palettes").get_palette("frappe")
|
THEMEPALETTE = require("catppuccin.palettes").get_palette("frappe")
|
||||||
elseif vim.g.colors_name == "catppuccin-latte" then
|
elseif vim.g.colors_name == "catppuccin-latte" then
|
||||||
|
|||||||
Reference in New Issue
Block a user