mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-14 11:24:43 +02:00
fixes indenting by adding compe setup in autopairs config (#569)
This commit is contained in:
parent
1cd6e45837
commit
f793797fa8
3 changed files with 7 additions and 4 deletions
|
@ -47,7 +47,6 @@ return require("packer").startup(function(use)
|
|||
-- Autocomplete
|
||||
use {
|
||||
"hrsh7th/nvim-compe",
|
||||
event = "InsertEnter",
|
||||
config = function()
|
||||
require("lv-compe").config()
|
||||
end
|
||||
|
@ -80,7 +79,9 @@ return require("packer").startup(function(use)
|
|||
use {"folke/which-key.nvim"}
|
||||
|
||||
-- Autopairs
|
||||
use {"windwp/nvim-autopairs"}
|
||||
use {"windwp/nvim-autopairs",
|
||||
config = function() require'lv-autopairs' end
|
||||
}
|
||||
|
||||
-- Comments
|
||||
use {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue