feat: add `lua_ls` completion for AstroNvim core plugins

pull/1/head
Micah Halter 2023-08-03 15:40:31 -04:00
parent ab545e95e1
commit 4f0762be2d
No known key found for this signature in database
GPG Key ID: 4224A6EA9A8CAAA8
5 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,7 @@ if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
return { return {
"AstroNvim/astroui", "AstroNvim/astroui",
---@type AstroUIOpts
opts = { opts = {
colorscheme = "astrodark", -- change colorscheme colorscheme = "astrodark", -- change colorscheme
}, },

View File

@ -3,6 +3,7 @@ if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
-- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes -- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes
return { return {
"AstroNvim/astroui", "AstroNvim/astroui",
---@type AstroUIOpts
opts = { opts = {
highlights = { highlights = {
init = { -- this table overrides highlights in all themes init = { -- this table overrides highlights in all themes

View File

@ -3,6 +3,7 @@ if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
-- AstroCore allows you easy access to customize the default options provided in AstroNvim -- AstroCore allows you easy access to customize the default options provided in AstroNvim
return { return {
"AstroNvim/astrocore", "AstroNvim/astrocore",
---@type AstroCoreOpts
opts = { opts = {
-- modify core features of AstroNvim -- modify core features of AstroNvim
features = { features = {

View File

@ -3,6 +3,7 @@ if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
-- AstroLSP allows you to customize the features in AstroNvim's LSP configuration engine -- AstroLSP allows you to customize the features in AstroNvim's LSP configuration engine
return { return {
"AstroNvim/astrolsp", "AstroNvim/astrolsp",
---@type AstroLSPOpts
opts = { opts = {
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on -- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
diagnostics = { diagnostics = {

View File

@ -3,6 +3,7 @@ if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
-- AstroCore provides a central place to modify mappings set up as well as which-key menu titles -- AstroCore provides a central place to modify mappings set up as well as which-key menu titles
return { return {
"AstroNvim/astrocore", "AstroNvim/astrocore",
---@type AstroCoreOpts
opts = { opts = {
mappings = { mappings = {
-- first key is the mode -- first key is the mode