Files
neovim-config/lua/plugins/astral.lua
T
rootiest 273580f533 ♻️ refactor(full-scope)!: major revision refactoring
Code layout has been changed and improoved. Annotations are added for documentation. Automated through utility functions and data tables

BREAKING CHANGE: Tested from clean. Now properly uses LuaRocks to install dependencies.
2024-09-04 16:07:12 -04:00

21 lines
870 B
Lua

--- @module "plugins.astral"
--- This module defines the astral plugin spec for the Neovim configuration.
-- ╭─────────────────────────────────────────────────────────╮
-- │ Astral Plugin │
-- ╰─────────────────────────────────────────────────────────╯
return { -- Astral
"rootiest/astral.nvim",
version = "*", -- Pin to GitHub releases
opts = {
fallback_themes = {
"catppuccin-macchiato",
"catppuccin-frappe",
"tokyonight",
"kanagawa",
"monochrome",
"default",
},
},
-- dev = true, -- Use local codebase
}