Compare commits

..

2 commits

3 changed files with 5 additions and 5 deletions

View file

@ -13,10 +13,10 @@ return {
local lsp_options = { local lsp_options = {
-- Configuration table of features provided by AstroLSP -- Configuration table of features provided by AstroLSP
features = { features = {
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 = true, -- enable/disable inlay hints on start
semantic_tokens = true, -- enable/disable semantic token highlighting semantic_tokens = true, -- enable/disable semantic token highlighting
signature_help = true, -- enable/disable automatic signature help
}, },
-- customize lsp formatting options -- customize lsp formatting options
formatting = { formatting = {

View file

@ -10,13 +10,12 @@ return {
opts = { opts = {
-- Configure core features of AstroNvim -- Configure core features of AstroNvim
features = { features = {
autopairs = true, -- enable autopairs at start autopairs = true, -- enable autopairs at start
cmp = true, -- enable completion at start cmp = true, -- enable completion at start
diagnostics = true, -- enable diagnostics at start diagnostics = true, -- enable diagnostics at start
highlighturl = true, -- highlight URLs at start highlighturl = true, -- highlight URLs at start
notifications = true, -- enable notifications at start notifications = true, -- enable notifications at start
signature_help = true, -- enable automatically showing signature help large_buf = { -- set global limits for large files for disabling features like treesitter
large_buf = { -- set global limits for large files for disabling features like treesitter
size = 1024 * 100, size = 1024 * 100,
lines = 10000, lines = 10000,
line_length = 1000, line_length = 1000,

View file

@ -132,6 +132,7 @@ return {
"LineNrAbove", "LineNrAbove",
"LineNrBelow", "LineNrBelow",
"LineNrBelow", "LineNrBelow",
"LspInlayHint",
"NeoTreeFloatingBorder", "NeoTreeFloatingBorder",
"NeoTreeMessage", "NeoTreeMessage",
"NeoTreeNormal", "NeoTreeNormal",