add snippet and complete more function

This commit is contained in:
gameloader
2022-10-10 17:40:13 +08:00
parent 81ef9d9ea1
commit c5128bda3c
10 changed files with 103 additions and 73 deletions

View File

@ -1,7 +1,7 @@
require("lualine").setup({
options = {
icons_enabled = true,
theme = "",
-- theme = "auto",
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
disabled_filetypes = {

View File

@ -1,2 +1,10 @@
require('notify').setup{
}
require("notify").setup({})
local notify = vim.notify
vim.notify = function(msg, ...)
if msg:match("warning: multiple different client offset_encodings") then
return
end
notify(msg, ...)
end

View File

@ -1,3 +1,3 @@
require('nvim-autopairs').setup({
enable_check_bracket_line = true
require("nvim-autopairs").setup({
enable_check_bracket_line = true,
})