astro-nvim-v3 - ft: fix some bug and add border

This commit is contained in:
huyjaky
2024-08-19 11:39:12 +07:00
parent 5b29aaf500
commit f10ca96639
9 changed files with 89 additions and 31 deletions

View File

@@ -11,15 +11,15 @@ return {
-- Configure core features of AstroNvim
features = {
large_buf = { size = 1024 * 500, lines = 10000 }, -- set global limits for large files for disabling features like treesitter
autopairs = true, -- enable autopairs at start
autopairs = false, -- enable autopairs at start
cmp = true, -- enable completion at start
diagnostics_mode = 3, -- diagnostic mode on start (0 = off, 1 = no signs/virtual text, 2 = no virtual text, 3 = on)
highlighturl = true, -- highlight URLs at start
notifications = false, -- enable notifications at start
highlighturl = false, -- highlight URLs at start
notifications = true, -- enable notifications at start
},
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
diagnostics = {
virtual_text = true,
-- virtual_text = true,
underline = true,
update_in_insert = false,
},