diff options
| author | christianchiarulli <[email protected]> | 2021-07-12 21:14:28 -0400 | 
|---|---|---|
| committer | christianchiarulli <[email protected]> | 2021-07-12 21:14:28 -0400 | 
| commit | 40209461a4cc66f57d6fb2146011773b0c12c546 (patch) | |
| tree | 41c3ea62c4d01cfcd2536831fd688845aa08334e /lua | |
| parent | cbc301b76a03c779c50e381933b1b191b4473261 (diff) | |
move user autocommands to bottom of table
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lv-utils/init.lua | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lua/lv-utils/init.lua b/lua/lv-utils/init.lua index ef075f15..615ec58b 100644 --- a/lua/lv-utils/init.lua +++ b/lua/lv-utils/init.lua @@ -43,7 +43,6 @@ end  lv_utils.define_augroups { -  _user_autocommands = O.user_autocommands,    _general_settings = {      {        "TextYankPost", @@ -107,6 +106,7 @@ lv_utils.define_augroups {    --   {'InsertEnter', '*', 'if &cursorline | let g:ms_cursorlineoff = 1 | setlocal nocursorline | endif'},    --   {'InsertLeave', '*', 'if exists("g:ms_cursorlineoff") | setlocal cursorline | endif'},    -- }, +  _user_autocommands = O.user_autocommands,  }  vim.cmd [[ | 
