Add autopairs
This commit is contained in:
parent
04606f2ee9
commit
0d1d303679
40
lua/configs/autopairs.lua
Normal file
40
lua/configs/autopairs.lua
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
local M = {}
|
||||||
|
|
||||||
|
function M.config()
|
||||||
|
local status_ok, npairs = pcall(require, "nvim-autopairs")
|
||||||
|
if not status_ok then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
npairs.setup {
|
||||||
|
check_ts = true,
|
||||||
|
ts_config = {
|
||||||
|
lua = { "string", "source" },
|
||||||
|
javascript = { "string", "template_string" },
|
||||||
|
java = false,
|
||||||
|
},
|
||||||
|
disable_filetype = { "TelescopePrompt", "spectre_panel" },
|
||||||
|
fast_wrap = {
|
||||||
|
map = "<M-e>",
|
||||||
|
chars = { "{", "[", "(", '"', "'" },
|
||||||
|
pattern = string.gsub([[ [%'%"%)%>%]%)%}%,] ]], "%s+", ""),
|
||||||
|
offset = 0,
|
||||||
|
end_key = "$",
|
||||||
|
keys = "qwertyuiopzxcvbnmasdfghjkl",
|
||||||
|
check_comma = true,
|
||||||
|
highlight = "PmenuSel",
|
||||||
|
highlight_grey = "LineNr",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
--Rule = require "nvim-autopairs.rule"
|
||||||
|
-- local cmp_autopairs = require "nvim-autopairs.completion.cmp"
|
||||||
|
-- local cmp_status_ok, cmp = pcall(require, "cmp")
|
||||||
|
-- if not cmp_status_ok then
|
||||||
|
-- return
|
||||||
|
-- end
|
||||||
|
-- cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done { map_char = { tex = "" } })
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
||||||
|
|
@ -80,7 +80,7 @@ function M.config()
|
|||||||
},
|
},
|
||||||
sources = {
|
sources = {
|
||||||
{ name = "nvim_lsp" },
|
{ name = "nvim_lsp" },
|
||||||
{ name = "luasnip" },
|
--{ name = "luasnip" },
|
||||||
{ name = "buffer" },
|
{ name = "buffer" },
|
||||||
{ name = "path" },
|
{ name = "path" },
|
||||||
},
|
},
|
||||||
|
@ -146,6 +146,9 @@ packer.startup {
|
|||||||
-- Quality of Life
|
-- Quality of Life
|
||||||
--
|
--
|
||||||
|
|
||||||
|
-- Autopairs
|
||||||
|
use { 'windwp/nvim-autopairs', config = function() require'configs.autopairs'.config() end }
|
||||||
|
|
||||||
-- Commenting
|
-- Commenting
|
||||||
use { 'numToStr/Comment.nvim', config = function() require'configs.comment'.config() end }
|
use { 'numToStr/Comment.nvim', config = function() require'configs.comment'.config() end }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user