Skip to content

Commit 04e42b7

Browse files
committed
feat: allow configuration of virtual text and virtual lines on startup
1 parent 973c979 commit 04e42b7

File tree

3 files changed

+25
-6
lines changed

3 files changed

+25
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ local opts = {
138138
features = {
139139
autopairs = true, -- enable or disable autopairs on start
140140
cmp = true, -- enable or disable cmp on start
141-
diagnostics = true, -- enable or disable diagnostics on start
141+
diagnostics = { virtual_text = true, virtual_lines = false }, -- enable or disable diagnostics features on start
142142
highlighturl = true, -- enable or disable highlighting of urls on start
143143
-- table for defining the size of the max file for all features, above these limits we disable features like treesitter.
144144
large_buf = {

lua/astrocore/config.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@
5353
---@field filetypes string[]? filetypes to ignore
5454
---@field buftypes string[]? buffer types to ignore
5555

56+
---@class AstroCoreDiagnosticsFeature
57+
---@field virtual_text boolean? show virtual text on startup
58+
---@field virtual_lines boolean? show virtual lines on startup
59+
---
5660
---@class AstroCoreSessionOpts
5761
---Session autosaving options
5862
---Example:
@@ -79,7 +83,7 @@
7983
---@class AstroCoreFeatureOpts
8084
---@field autopairs boolean? enable or disable autopairs on start (boolean; default = true)
8185
---@field cmp boolean? enable or disable cmp on start (boolean; default = true)
82-
---@field diagnostics boolean? diagnostic enabled on start
86+
---@field diagnostics boolean|AstroCoreDiagnosticsFeature? diagnostic enabled on start
8387
---@field highlighturl boolean? enable or disable highlighting of urls on start (boolean; default = true)
8488
---table for defining the size of the max file for all features, above these limits we disable features like treesitter.
8589
---value can also be `false` to disable large buffer detection.

lua/astrocore/init.lua

+19-4
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ M.config = require "astrocore.config"
1414
--- A table to manage ToggleTerm terminals created by the user, indexed by the command run and then the instance number
1515
---@type table<string,table<integer,table>>
1616
M.user_terminals = {}
17-
--- A table of settings for different levels of diagnostics
18-
---@type table<integer,vim.diagnostic.Opts>
19-
M.diagnostics = { [0] = {}, {}, {}, {} }
2017

2118
--- Merge extended options with a default table of options
2219
---@param default? table The default table that you want to merge into
@@ -548,7 +545,25 @@ function M.setup(opts)
548545

549546
-- setup diagnostics
550547
vim.diagnostic.config(M.config.diagnostics)
551-
vim.diagnostic.enable(vim.tbl_get(M.config, "features", "diagnostics") or false)
548+
local diagnostic_feature = vim.tbl_get(M.config, "features", "diagnostics")
549+
if diagnostic_feature then
550+
vim.diagnostic.enable(true)
551+
if type(diagnostic_feature) == "table" then
552+
local diagnostic_config = assert(vim.diagnostic.config())
553+
-- setup startup state of virtual text and virtual_lines
554+
for _, feature in ipairs { "virtual_text", "virtual_lines" } do
555+
if
556+
diagnostic_config[feature] ~= nil
557+
and diagnostic_feature[feature] ~= nil
558+
and (diagnostic_config[feature] ~= false) ~= diagnostic_feature[feature]
559+
then
560+
require("astrocore.toggles")[feature](true)
561+
end
562+
end
563+
end
564+
else
565+
vim.diagnostic.enable(false)
566+
end
552567

553568
vim.api.nvim_create_autocmd({ "BufReadPre", "BufReadPost" }, {
554569
group = vim.api.nvim_create_augroup("large_buf_detector", { clear = true }),

0 commit comments

Comments
 (0)