Config updates

This commit is contained in:
Ismo Vuorinen
2023-02-16 16:19:49 +02:00
parent 6f246744d4
commit e3fa6772f0
9 changed files with 154 additions and 81 deletions

View File

@@ -13,16 +13,24 @@ return {
foldmethod = "expr",
linebreak = true, -- linebreak soft wrap at words
list = true, -- show whitespace characters
listchars = { tab = "", extends = "", precedes = "", trail = "·", eol = "" },
showbreak = " ",
listchars = {
tab = " ",
extends = "",
precedes = "",
trail = "·",
eol = ""
},
showbreak = ""
},
g = {
mapleader = " ", -- sets vim.g.mapleader
autoformat_enabled = true, -- enable or disable auto formatting at start (lsp.formatting.format_on_save must be enabled)
-- enable or disable auto formatting at start (lsp.formatting.format_on_save must be enabled)
autoformat_enabled = true,
cmp_enabled = true, -- enable completion at start
autopairs_enabled = true, -- enable autopairs at start
diagnostics_enabled = true, -- enable diagnostics at start
status_diagnostics_enabled = true, -- enable diagnostics in statusline
icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing)
},
-- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing)
icons_enabled = true
}
}