| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 | --[[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.leader_key = " "O.ignore_case = trueO.smart_case = true-- TODO User Config for predefined plugins-- After changing plugin config exit and reopen LunarVim, Run :PackerInstall :PackerCompileO.plugin.dashboard.active = trueO.plugin.colorizer.active = falseO.plugin.ts_playground.active = falseO.plugin.indent_line.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 = true-- python-- O.python.linter = 'flake8'O.lang.python.isort = trueO.lang.python.diagnostics.virtual_text = trueO.lang.python.analysis.use_library_code_types = true-- javascriptO.lang.tsserver.linter = nil-- Additional Plugins-- O.user_plugins = {{"windwp/nvim-ts-autotag"}}-- Autocommands (https://neovim.io/doc/user/autocmd.html)-- O.user_autocommands = {{ "BufWinEnter", "*", "echo \"hi again\""}}-- Additional Leader bindings for WhichKey-- O.user_which_key = {--   A = {--     name = "+Custom Leader Keys",--     a = { "<cmd>echo 'first custom command'<cr>", "Description for a" },--     b = { "<cmd>echo 'second custom command'<cr>", "Description for b" },--   },-- }
 |