mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-01-26 11:24:07 +00:00
Config updates
This commit is contained in:
18
options.lua
18
options.lua
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user