diff --git a/lua/lazyvim/config/options.lua b/lua/lazyvim/config/options.lua index 796bbf16..6e8ab149 100644 --- a/lua/lazyvim/config/options.lua +++ b/lua/lazyvim/config/options.lua @@ -18,22 +18,6 @@ vim.g.lazyvim_picker = "auto" -- * a function with signature `function(buf) -> string|string[]` vim.g.root_spec = { "lsp", { ".git", "lua" }, "cwd" } --- LazyVim automatically configures lazygit: --- * theme, based on the active colorscheme. --- * editPreset to nvim-remote --- * enables nerd font icons --- Set to false to disable. --- Set the options you want to override in `~/.config/lazygit/custom.yml` --- WARN: on Windows you might want to set `editPreset: "nvim"` due to --- this issue https://github.com/jesseduffield/lazygit/issues/3467 -vim.g.lazygit_config = true - --- Options for the LazyVim statuscolumn -vim.g.lazyvim_statuscolumn = { - folds_open = false, -- show fold sign when fold is open - folds_githl = false, -- highlight fold sign with git sign color -} - -- Optionally setup the terminal to use -- This sets `vim.o.shell` and does some additional configuration for: -- * pwsh @@ -47,12 +31,6 @@ vim.g.root_lsp_ignore = { "copilot" } -- Hide deprecation warnings vim.g.deprecation_warnings = false --- Set filetype to `bigfile` for files larger than 1.5 MB --- Only vim syntax will be enabled (with the correct filetype) --- LSP, treesitter and other ft plugins will be disabled. --- mini.animate will also be disabled. -vim.g.bigfile_size = 1024 * 1024 * 1.5 -- 1.5 MB - -- Show the current document symbols location from Trouble in lualine -- You can disable this for a buffer by setting `vim.b.trouble_lualine = false` vim.g.trouble_lualine = true