diff --git a/init.lua b/init.lua index ebf3963..dada585 100644 --- a/init.lua +++ b/init.lua @@ -48,13 +48,20 @@ local config = { wrap = false, -- sets vim.opt.wrap }, g = { - mapleader = " ", -- sets vim.g.mapleader - autoformat_enabled = true, -- enable or disable auto formatting at start (lsp.formatting.format_on_save must be enabled) - cmp_enabled = true, -- enable completion at start - autopairs_enabled = true, -- enable autopairs at start - 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) - icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing) - ui_notifications_enabled = true, -- disable notifications when toggling UI elements + -- sets vim.g.mapleader + mapleader = " ", + -- enable or disable auto formatting at start (lsp.formatting.format_on_save must be enabled) + autoformat_enabled = true, + -- enable completion at start + cmp_enabled = true, + -- enable autopairs at start + autopairs_enabled = true, + -- set the visibility of diagnostics in the UI (0=off, 1=only show in status line, 2=virtual text off, 3=all on) + diagnostics_mode = 3, + -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing) + icons_enabled = true, + -- disable notifications when toggling UI elements + ui_notifications_enabled = true, -- Taglist Tlist_Use_Right_Window = 1, Tlist_GainFocus_On_ToggleOpen = 1, @@ -555,8 +562,6 @@ local config = { }, { "stevearc/dressing.nvim" }, - - -- Live server { "aurum77/live-server.nvim",