Set vim-matchup options before plugin configuration (#506)

Several of the vim-matchup options don't take effect unless they are set
before the plugin is required.
This commit is contained in:
tafryn 2021-06-18 14:44:17 -07:00 committed by GitHub
parent c51ffdd8ac
commit 19bd48ac80
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@ require('lv-globals')
vim.cmd('luafile '..CONFIG_PATH..'/lv-settings.lua')
require('settings')
require('lv-gitblame')
require('lv-matchup')
require('plugins')
require('lv-utils')
require('lv-autocommands')
@ -17,7 +18,6 @@ require('lv-dashboard')
require('lv-telescope')
require('lv-gitsigns')
require('lv-treesitter')
require('lv-matchup')
require('lv-autopairs')
require('lv-rnvimr')
require('lv-which-key')