nvim: fixed the watch_index startup warning

This commit is contained in:
PowerUser64 2021-09-26 14:29:44 -07:00
parent 1ed5ec20e6
commit 21bec5808d
2 changed files with 5 additions and 8 deletions

View file

@ -119,7 +119,7 @@ M.gitsigns = function()
['o ih'] = '<cmd><C-U>lua require"gitsigns.actions".select_hunk()<CR>',
['x ih'] = '<cmd><C-U>lua require"gitsigns.actions".select_hunk()<CR>'
},
watch_index = {
watch_gitdir = {
interval = 1000,
follow_files = true
},

View file

@ -91,11 +91,8 @@ return require('packer').startup(function()
require("blake.lsp").signature()
end,
}
use { -- Use the % key for more things
use { -- Use the percent (%) key for more things
"andymass/vim-matchup",
-- setup = function()
-- require("blake.other").packer_lazy_load "vim-matchup"
-- end,
}
use { -- ALE: Support for lots of linters, etc
'dense-analysis/ale',
@ -159,6 +156,9 @@ return require('packer').startup(function()
use { -- Alignment
'junegunn/vim-easy-align',
}
use { -- cheat.sh integration
"dbeniamine/cheat.sh-vim",
}
use { -- tpope: Quote/parenthesis changing
'tpope/vim-surround'
}
@ -171,9 +171,6 @@ return require('packer').startup(function()
use { -- tpope: Repeatability for various tpope plugins
'tpope/vim-repeat',
}
use { -- cheat.sh integration
"dbeniamine/cheat.sh-vim",
}
end)