diff options
author | christianchiarulli <[email protected]> | 2021-07-05 16:05:15 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-05 16:05:15 -0400 |
commit | 5c73e9bea50695e6b399351c2443068d23f41047 (patch) | |
tree | ef7c6a523eabb16de09f58221034bf48f1109cc1 | |
parent | 71c5cb4f0be89d3a175e99b0c2ebc5e55178e8a9 (diff) |
fix user config
-rw-r--r-- | utils/installer/lv-config.example.lua | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/utils/installer/lv-config.example.lua b/utils/installer/lv-config.example.lua index d5c3e40d..71d9dfc8 100644 --- a/utils/installer/lv-config.example.lua +++ b/utils/installer/lv-config.example.lua @@ -5,8 +5,7 @@ Linters should be filled in as strings with either a global executable or a path to an executable -]] --- THESE ARE EXAMPLE CONFIGS FEEL FREE TO CHANGE TO WHATEVER YOU WANT +]] -- THESE ARE EXAMPLE CONFIGS FEEL FREE TO CHANGE TO WHATEVER YOU WANT -- general O.format_on_save = true O.auto_complete = true @@ -23,7 +22,7 @@ O.transparent_window = false -- TODO User Config for predefined plugins -- After changing plugin config exit and reopen LunarVim, Run :PackerInstall :PackerCompile -O.bultin_plugin.hop.active = false +O.plugin.hop.active = false O.plugin.dial.active = false O.plugin.dashboard.active = true O.plugin.matchup.active = false @@ -40,7 +39,7 @@ O.plugin.zen.active = false -- if you don't want all the parsers change this to a table of the ones you want O.treesitter.ensure_installed = "all" -O.treesitter.ignore_install = { "haskell" } +O.treesitter.ignore_install = {"haskell"} O.treesitter.highlight.enabled = true O.lang.clang.diagnostics.virtual_text = true @@ -65,7 +64,7 @@ O.lang.tsserver.linter = nil O.lang.php.environment.php_version = "7.4" O.lang.php.diagnostics.signs = true O.lang.php.diagnostics.underline = true -O.lang.php.filetypes = { "php", "phtml" } +O.lang.php.filetypes = {"php", "phtml"} -- Autocommands (https://neovim.io/doc/user/autocmd.html) -- O.user_autocommands = {{ "BufWinEnter", "*", "echo \"hi again\""}} |