diff options
author | christianchiarulli <[email protected]> | 2021-07-05 15:35:06 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-05 15:35:06 -0400 |
commit | be9a5a08893b2c45ffa43e8372b3135747ee0df8 (patch) | |
tree | 6467159a20335ab8ce7098e8c5de44d191a6410c /utils | |
parent | 6b41286d70b71184b915724a0a03ccd8ec3b4e16 (diff) |
user defined plugins
Diffstat (limited to 'utils')
-rw-r--r-- | utils/installer/lv-config.example.lua | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/utils/installer/lv-config.example.lua b/utils/installer/lv-config.example.lua index ba4bedb2..56fe7176 100644 --- a/utils/installer/lv-config.example.lua +++ b/utils/installer/lv-config.example.lua @@ -20,8 +20,9 @@ O.smart_case = true O.lushmode = false O.transparent_window = false +-- TODO User Config for predefined plugins -- After changing plugin config exit and reopen LunarVim, Run :PackerInstall :PackerCompile -O.plugin.hop.active = false +O.bultin_plugin.hop.active = false O.plugin.dial.active = false O.plugin.dashboard.active = true O.plugin.matchup.active = false @@ -95,11 +96,9 @@ O.lang.php.diagnostics.signs = true O.lang.php.diagnostics.underline = true O.lang.php.filetypes = { "php", "phtml" } --- TODO Autocommands --- https://neovim.io/doc/user/autocmd.html --- local test = { "BufWinEnter", "*", "echo \"hi again\""} --- table.insert(O.user_autocommands, test) +-- Autocommands (https://neovim.io/doc/user/autocmd.html) +-- O.user_autocommands = {{ "BufWinEnter", "*", "echo \"hi again\""}} --- TODO Additional Plugins +-- Additional Plugins +-- O.custom_plugins = {{"windwp/nvim-ts-autotag"}} --- TODO User Config for plugins |