feat: add `lua_ls` completion for AstroNvim core plugins
parent
ab545e95e1
commit
4f0762be2d
|
@ -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
|
||||||
},
|
},
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue