add snippet and complete more function
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
require("lualine").setup({
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = "",
|
||||
-- theme = "auto",
|
||||
component_separators = { left = "", right = "" },
|
||||
section_separators = { left = "", right = "" },
|
||||
disabled_filetypes = {
|
||||
|
@ -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
|
||||
|
@ -1,3 +1,3 @@
|
||||
require('nvim-autopairs').setup({
|
||||
enable_check_bracket_line = true
|
||||
require("nvim-autopairs").setup({
|
||||
enable_check_bracket_line = true,
|
||||
})
|
||||
|
Reference in New Issue
Block a user