Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit baf3ae9

Browse files
options: clean up configuration file
1 parent 32f2ce8 commit baf3ae9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

options.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ return {
77
spell = false, -- sets vim.opt.spell
88
signcolumn = "auto", -- sets vim.opt.signcolumn to auto
99
wrap = true, -- sets vim.opt.wrap
10-
showtabline = 0 -- sets vim.opt.showtabline
10+
-- showtabline = 0, -- sets vim.opt.showtabline - zero hides tabs
1111
timeoutlen = 420,
1212
},
1313
g = {
1414
mapleader = " ", -- sets vim.g.mapleader
15-
maplocalleader = ",", -- Set local leader key binding (supports Conjure key bindings)
15+
-- maplocalleader = ",", -- Set local leader key binding (defined in AstroNvim)
1616
autoformat_enabled = true, -- enable or disable auto formatting at start (lsp.formatting.format_on_save must be enabled)
1717
cmp_enabled = true, -- enable completion at start
1818
autopairs_enabled = true, -- enable autopairs at start
1919
diagnostics_mode = 3, -- set the visibility of diagnostics in the UI (0=off, 1=only show in status line, 2=virtual text off, 3=all on)
2020
icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing)
2121
ui_notifications_enabled = true, -- disable notifications when toggling UI elements
22-
VM_leader = "gm" -- Visual Multi Leader (multiple cursors)
22+
VM_leader = "gm", -- Visual Multi Leader (multiple cursors)
2323
},
2424
}
2525
-- If you need more control, you can use the function()...end notation

0 commit comments

Comments
 (0)