Compare commits

..

No commits in common. "46127c6f48f9df253793e0cb21cbf170da8e2040" and "3394d5bed5705a05ebf6baa20f4f6d671b30af15" have entirely different histories.

2 changed files with 10 additions and 15 deletions

View file

@ -15,7 +15,7 @@ return {
features = { features = {
autoformat = true, -- enable or disable auto formatting on start autoformat = true, -- enable or disable auto formatting on start
codelens = true, -- enable/disable codelens refresh on start codelens = true, -- enable/disable codelens refresh on start
inlay_hints = true, -- enable/disable inlay hints on start inlay_hints = false, -- enable/disable inlay hints on start
semantic_tokens = true, -- enable/disable semantic token highlighting semantic_tokens = true, -- enable/disable semantic token highlighting
}, },
-- customize lsp formatting options -- customize lsp formatting options

View file

@ -10,24 +10,19 @@ return {
opts = { opts = {
-- Configure core features of AstroNvim -- Configure core features of AstroNvim
features = { features = {
autopairs = true, -- enable autopairs at start large_buf = { size = 1024 * 500, lines = 10000 }, -- set global limits for large files for disabling features like treesitter
cmp = true, -- enable completion at start autopairs = true, -- enable autopairs at start
diagnostics = true, -- enable diagnostics at start cmp = true, -- enable completion at start
highlighturl = true, -- highlight URLs at start diagnostics_mode = 3, -- diagnostic mode on start (0 = off, 1 = no signs/virtual text, 2 = no virtual text, 3 = on)
notifications = true, -- enable notifications at start highlighturl = true, -- highlight URLs at start
signature_help = true, -- enable automatically showing signature help notifications = true, -- enable notifications at start
large_buf = { -- set global limits for large files for disabling features like treesitter signature_help = true, -- enable automatically showing signature help
size = 1024 * 100, inlay_hints = true, -- enable inlay hints globally
lines = 10000,
line_length = 1000,
},
}, },
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on -- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
diagnostics = { diagnostics = {
underline = true,
update_in_insert = false,
virtual_lines = { current_line = true },
virtual_text = true, virtual_text = true,
virtual_lines = { current_line = true },
}, },
-- vim options can be configured here -- vim options can be configured here
options = { options = {