| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | --[[O is the global options objectLinters should befilled in as strings with eithera global executable or a path toan executable]] -- THESE ARE EXAMPLE CONFIGS FEEL FREE TO CHANGE TO WHATEVER YOU WANT-- generalO.format_on_save = trueO.auto_complete = trueO.colorscheme = "spacegray"O.auto_close_tree = 0O.wrap_lines = falseO.timeoutlen = 100O.document_highlight = trueO.leader_key = " "O.ignore_case = trueO.smart_case = trueO.lushmode = falseO.transparent_window = false-- TODO User Config for predefined plugins-- After changing plugin config exit and reopen LunarVim, Run :PackerInstall :PackerCompileO.plugin.hop.active = falseO.plugin.dial.active = falseO.plugin.dashboard.active = trueO.plugin.matchup.active = falseO.plugin.colorizer.active = falseO.plugin.numb.active = falseO.plugin.ts_playground.active = falseO.plugin.indent_line.active = falseO.plugin.gitlinker.active = falseO.plugin.zen.active = false-- dashboard-- O.dashboard.custom_header = {""}-- O.dashboard.footer = {""}-- if you don't want all the parsers change this to a table of the ones you wantO.treesitter.ensure_installed = "all"O.treesitter.ignore_install = {"haskell"}O.treesitter.highlight.enabled = trueO.lang.clang.diagnostics.virtual_text = trueO.lang.clang.diagnostics.signs = trueO.lang.clang.diagnostics.underline = true-- python-- add things like O.python.linter.flake8.exec_path-- O.python.linter = 'flake8'O.lang.python.isort = trueO.lang.python.diagnostics.virtual_text = trueO.lang.python.diagnostics.signs = trueO.lang.python.diagnostics.underline = trueO.lang.python.analysis.type_checking = "off"O.lang.python.analysis.auto_search_paths = trueO.lang.python.analysis.use_library_code_types = true-- javascriptO.lang.tsserver.linter = nil-- phpO.lang.php.environment.php_version = "7.4"O.lang.php.diagnostics.signs = trueO.lang.php.diagnostics.underline = trueO.lang.php.filetypes = {"php", "phtml"}O.lang.php.format = {  format = {    default = "psr12"  }}-- Autocommands (https://neovim.io/doc/user/autocmd.html)-- O.user_autocommands = {{ "BufWinEnter", "*", "echo \"hi again\""}}-- Additional Plugins-- O.custom_plugins = {{"windwp/nvim-ts-autotag"}}
 |